<?xml version="1.0" encoding="utf-8"  ?>
<rss version="2.0">
	<channel>
<br />
<b>Warning</b>:  htmlspecialchars() expects parameter 2 to be long, string given in <b>/Volumes/HD3/www/segue-1.9.5/rss.inc.php</b> on line <b>74</b><br />
		<title> &gt; All Posts</title>
		<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2</link>
		<description></description>
		<lastBuildDate>Thu, 23 Feb 2023 06:51:25 +0100</lastBuildDate>
		<generator>Segue RSS Generator</generator>
		<item>
			<title>Esempio di keylistener</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=231&amp;page=807&amp;story=1914&amp;detail=1914#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=231&amp;page=807&amp;story=1914&amp;detail=1914#</guid>
			<pubDate>Thu, 23 May 2013 15:57:00 +0200</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=231&amp;page=807&amp;story=1914&amp;detail=1914#&#039;&gt;Intercettazione tasti &gt; Esempio di keylistener&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;class MyPanel extends JPanel implements KeyListener {&lt;br /&gt;    private char c = \&#039;e\&#039;;&lt;br /&gt;&lt;br /&gt;    public MyPanel() {&lt;br /&gt;        this.setPreferredSize(new Dimension(500, 500));&lt;br /&gt;        addKeyListener(this);&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public void addNotify() {&lt;br /&gt;        super.addNotify();&lt;br /&gt;        requestFocus();&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public void paintComponent(Graphics g) {&lt;br /&gt;        g.clearRect(0, 0, getWidth(), getHeight());&lt;br /&gt;        g.drawString(\&quot;the key that pressed is \&quot;   c, 250, 250);&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public void keyPressed(KeyEvent e) { }&lt;br /&gt;    public void keyReleased(KeyEvent e) { }&lt;br /&gt;    public void keyTyped(KeyEvent e) {&lt;br /&gt;        c = e.getKeyChar();&lt;br /&gt;        repaint();&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public static void main(String[] s) {&lt;br /&gt;        JFrame f = new JFrame();&lt;br /&gt;        f.getContentPane().add(new MyPanel());&lt;br /&gt;        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);&lt;br /&gt;        f.pack();&lt;br /&gt;        f.setVisible(true);&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt; tratto da &lt;a href=\&quot;http://stackoverflow.com/questions/9333876/how-to-simply-implement-a-keylistener\&quot;&gt;stackoverflow&lt;/a&gt;</description>
		</item>
		<item>
			<title>Esempio di inputMap-actionmap</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=231&amp;page=807&amp;story=1913&amp;detail=1913#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=231&amp;page=807&amp;story=1913&amp;detail=1913#</guid>
			<pubDate>Thu, 23 May 2013 15:53:00 +0200</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=231&amp;page=807&amp;story=1913&amp;detail=1913#&#039;&gt;Intercettazione tasti &gt; Esempio di inputMap-actionmap&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;package it.unitn.prog2.keybindingdemo;&lt;br /&gt;&lt;br /&gt;import java.awt.BorderLayout;&lt;br /&gt;import java.awt.Color;&lt;br /&gt;import java.awt.event.ActionEvent;&lt;br /&gt;import javax.swing.*;&lt;br /&gt;/* Usare il tab per fare ciclare il focus tra le componenti */&lt;br /&gt;public class KeyBindingDemo {&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     * @param args the command line arguments&lt;br /&gt;     */&lt;br /&gt;    public static void main(String[] args) {&lt;br /&gt;        new KeyBindingDemo();&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    KeyBindingDemo() {&lt;br /&gt;        JFrame f = new JFrame();&lt;br /&gt;        f.setSize(400, 400);&lt;br /&gt;        JPanel p = (JPanel) (f.getContentPane());&lt;br /&gt;        p.setLayout(new BorderLayout());&lt;br /&gt;        //====================================&lt;br /&gt;        AbstractAction enterAction = new AbstractAction() {&lt;br /&gt;            public void actionPerformed(ActionEvent tf) {&lt;br /&gt;                System.out.println(\&quot;The Enter key has been pressed in \&quot; tf.getSource().getClass().toString());&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;        };&lt;br /&gt;        //====================================&lt;br /&gt;        AbstractAction enterAction2 = new AbstractAction() {&lt;br /&gt;            public void actionPerformed(ActionEvent tf) {&lt;br /&gt;                System.out.println(\&quot;The Enter key has been pressed on the yellow panel \&quot;);&lt;br /&gt;&lt;br /&gt;            }&lt;br /&gt;        };&lt;br /&gt;        p.getInputMap().put(KeyStroke.getKeyStroke(\&quot;ENTER\&quot;), \&quot;doEnterAction\&quot;);&lt;br /&gt;        p.getActionMap().put(\&quot;doEnterAction\&quot;, enterAction);&lt;br /&gt;        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);&lt;br /&gt;&lt;br /&gt;        JButton b=new JButton();&lt;br /&gt;        b.getInputMap().put(KeyStroke.getKeyStroke(\&quot;ENTER\&quot;), \&quot;doEnterAction\&quot;);&lt;br /&gt;        b.getActionMap().put(\&quot;doEnterAction\&quot;, enterAction);&lt;br /&gt;        p.add(b,BorderLayout.NORTH);&lt;br /&gt;        //--------------------&lt;br /&gt;        JPanel ip=new JPanel();&lt;br /&gt;        ip.setBackground(Color.yellow);&lt;br /&gt;        ip.getInputMap().put(KeyStroke.getKeyStroke(\&quot;ENTER\&quot;), \&quot;doEnterAction\&quot;);&lt;br /&gt;        ip.getActionMap().put(\&quot;doEnterAction\&quot;, enterAction2);&lt;br /&gt;        p.add(ip,BorderLayout.CENTER);&lt;br /&gt;        //--------------------&lt;br /&gt;        JTextField tf=new JTextField();&lt;br /&gt;        p.add(tf,BorderLayout.SOUTH);&lt;br /&gt;        tf.getInputMap().put(KeyStroke.getKeyStroke(\&quot;ENTER\&quot;), \&quot;doEnterAction\&quot;);&lt;br /&gt;        tf.getActionMap().put(\&quot;doEnterAction\&quot;, enterAction);&lt;br /&gt;        f.setVisible(true);&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;</description>
		</item>
		<item>
			<title>AVVISI</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1900&amp;detail=1900#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1900&amp;detail=1900#</guid>
			<pubDate>Fri, 1 Mar 2013 20:27:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1900&amp;detail=1900#&#039;&gt;Consegna e Avvisi &gt; AVVISI&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;LE LEZIONI DEL MARTEDI SONO ANTICIPATE DI 15 Min: iniziano alle 14:15.</description>
		</item>
		<item>
			<title>Calendario delle lezioni</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=230&amp;page=790&amp;story=1893&amp;detail=1893#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=230&amp;page=790&amp;story=1893&amp;detail=1893#</guid>
			<pubDate>Fri, 22 Feb 2013 10:23:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=230&amp;page=790&amp;story=1893&amp;detail=1893#&#039;&gt;Calendario &gt; Calendario delle lezioni&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;table cellspacing=\&quot;0\&quot; cellpadding=\&quot;0\&quot; border=\&quot;0\&quot; style=\&quot;border-collapse:    collapse\&quot;&gt;    &lt;tbody&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td width=\&quot;28\&quot; height=\&quot;15\&quot; style=\&quot;height:15.0pt;width:28pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td width=\&quot;44\&quot; align=\&quot;center\&quot; class=\&quot;xl65\&quot; style=\&quot;width:44pt\&quot;&gt;19-feb&lt;/td&gt;            &lt;td width=\&quot;55\&quot; align=\&quot;center\&quot; class=\&quot;xl66\&quot; style=\&quot;width:35pt\&quot;&gt;14.30&lt;/td&gt;            &lt;td width=\&quot;127\&quot; style=\&quot;width:127pt\&quot;&gt;Introduzione&lt;/td&gt;            &lt;td width=\&quot;337\&quot; style=\&quot;width:337pt\&quot;&gt;Video 1&lt;/td&gt;            &lt;td width=\&quot;65\&quot; style=\&quot;width:65pt\&quot;&gt;&amp;nbsp;&lt;/td&gt;            &lt;td width=\&quot;65\&quot; style=\&quot;width:65pt\&quot;&gt;&amp;nbsp;&lt;/td&gt;            &lt;td width=\&quot;65\&quot; style=\&quot;width:65pt\&quot;&gt;&amp;nbsp;&lt;/td&gt;            &lt;td width=\&quot;28\&quot; style=\&quot;width:28pt\&quot;&gt;&amp;nbsp;&lt;/td&gt;            &lt;td width=\&quot;44\&quot; style=\&quot;width:44pt\&quot;&gt;&amp;nbsp;&lt;/td&gt;            &lt;td width=\&quot;35\&quot; style=\&quot;width:35pt\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;21-feb&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Introduzione&lt;/td&gt;            &lt;td&gt;Video 1&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;26-feb&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.30&lt;/td&gt;            &lt;td&gt;Richiami di C  &lt;/td&gt;            &lt;td&gt;Video 2&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;28-feb&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Richiami di C  &lt;/td&gt;            &lt;td&gt;video n.3, video n.4 fino alla slide 59 compresa&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;05-mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.30&lt;/td&gt;            &lt;td&gt;Pila in C  &lt;/td&gt;            &lt;td class=\&quot;xl67\&quot; colspan=\&quot;2\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione   guardare il video n.4 dalla slide 60 e il video n.5&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;5\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;07-mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Pila in C  &lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n.6&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; class=\&quot;xl69\&quot; style=\&quot;height:15.0pt\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;Lun&lt;/span&gt;&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl70\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;11-mar&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl71\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;Esercitazione 1&lt;br /&gt;            Novella Brugnolli&lt;br /&gt;            &lt;/span&gt;            &lt;div align=\&quot;center\&quot;&gt;&lt;span style=\&quot;background-color: rgb(255, 255, 0);\&quot;&gt;&lt;a href=\&quot;\[\[linkpath\]\]_userFiles/2013Programmazione2/1_slides.pdf\&quot;&gt;&lt;strong&gt;SLIDES&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;            &lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;A-L 14:30 ; M-Z 16:30 &lt;br /&gt;            &lt;/span&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;14-mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Pila in Java&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n.7,8&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;19-mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.15&lt;/td&gt;            &lt;td&gt;Pila in Java&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n.9&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;21-mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Ereditariet&amp;agrave;&lt;/td&gt;            &lt;td&gt;video 10&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;26-mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.15&lt;/td&gt;            &lt;td&gt;Polimorfismo&lt;/td&gt;            &lt;td&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n. 11&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;28-mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Polimorfismo&lt;/td&gt;            &lt;td&gt;video 12&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;04-apr&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Collection&lt;/td&gt;            &lt;td&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video 12B&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; class=\&quot;xl69\&quot; style=\&quot;height:15.0pt\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;Lun&lt;/span&gt;&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl70\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;08-apr&lt;/span&gt;&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl71\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;14.30&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;Esercitazione 2&lt;br /&gt;            Novella Brugnolli&lt;br /&gt;            &lt;/span&gt;            &lt;div align=\&quot;center\&quot;&gt;&lt;span style=\&quot;background-color: rgb(255, 255, 0);\&quot;&gt;&lt;font color=\&quot;#FFFF00\&quot;&gt;&lt;strong&gt;&lt;a href=\&quot;\[\[linkpath\]\]_userFiles/2013Programmazione2/ese2.pdf\&quot;&gt;SLIDES&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;            &lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;M-Z 14:30 ; A-L 16:30&lt;/span&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;11-apr&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Tombola&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n.13&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;16-apr&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.15&lt;/td&gt;            &lt;td&gt;Tombola&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n.14&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;18-apr&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;GUI&lt;/td&gt;            &lt;td&gt;video 15&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; class=\&quot;xl69\&quot; style=\&quot;height:15.0pt\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;Lun&lt;/span&gt;&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl70\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;22-apr&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl71\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;Esercitazione 3&lt;br /&gt;            Novella Brugnolli&lt;/span&gt;            &lt;div align=\&quot;center\&quot;&gt;&lt;span style=\&quot;background-color: rgb(255, 255, 0);\&quot;&gt;&lt;font color=\&quot;#FFFF00\&quot;&gt;&lt;strong&gt;&lt;a href=\&quot;\[\[linkpath\]\]_userFiles/2013Programmazione2/ese3.pdf\&quot;&gt;SLIDES&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;            &lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;A-L 14:30 ; M-Z 16:30&lt;/span&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;23-apr&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.15&lt;/td&gt;            &lt;td&gt;Eventi&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n.16&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;Lun&lt;/span&gt;&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;29-apr&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl66\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;            &lt;td&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;Esercitazione 4&lt;br /&gt;            Novella Brugnolli&lt;/span&gt;            &lt;div align=\&quot;center\&quot;&gt;&lt;span style=\&quot;background-color: rgb(255, 255, 0);\&quot;&gt;&lt;font color=\&quot;#FFFF00\&quot;&gt;&lt;strong&gt;&lt;a href=\&quot;\[\[linkpath\]\]_userFiles/2013Programmazione2/ese4.pdf\&quot;&gt;SLIDES&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;            &lt;/td&gt;            &lt;td&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;M-Z 14:30 ; A-L 16:30&lt;/span&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;30-apr&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.15&lt;/td&gt;            &lt;td&gt;More graphics&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n.17&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;02-mag&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Painting&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;video n.18&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;14-mag&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.15&lt;/td&gt;            &lt;td&gt;Uguaglianza&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;PRIMA della lezione guardare il video n.19&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;16-mag&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Clonazione&lt;/td&gt;            &lt;td class=\&quot;xl68\&quot;&gt;video 20&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; class=\&quot;xl69\&quot; style=\&quot;height:15.0pt\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;Lun&lt;/span&gt;&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl70\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;20-mag&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl71\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;Esercitazione 5&lt;br /&gt;            Novella Brugnolli&lt;/span&gt;            &lt;div align=\&quot;center\&quot;&gt;&lt;span style=\&quot;background-color: rgb(255, 255, 0);\&quot;&gt;&lt;font color=\&quot;#FFFF00\&quot;&gt;&lt;strong&gt;&lt;a href=\&quot;\[\[linkpath\]\]_userFiles/2013Programmazione2/ese5.pdf\&quot;&gt;SLIDES&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;            &lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 255);\&quot;&gt;A-L 14:30 ; M-Z 16:30&lt;/span&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Mar&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;21-mag&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;14.15&lt;/td&gt;            &lt;td&gt;Pila e coda polimorfa&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;font color=\&quot;#FF0000\&quot;&gt;&lt;font color=\&quot;#000000\&quot;&gt;&lt;span style=\&quot;mso-spacerun:yes\&quot;&gt;&amp;nbsp;&lt;/span&gt;video n.21&lt;/font&gt;&lt;span style=\&quot;mso-spacerun:yes\&quot;&gt;&lt;font color=\&quot;#000000\&quot;&gt; &lt;/font&gt;&lt;br /&gt;            &lt;/span&gt;&lt;/font&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;Gio&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl65\&quot;&gt;23-mag&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl66\&quot;&gt;08.30&lt;/td&gt;            &lt;td&gt;Inheritance e Delegation&lt;/td&gt;            &lt;td class=\&quot;xl67\&quot;&gt;&lt;span style=\&quot;mso-spacerun:yes\&quot;&gt;&amp;nbsp;&lt;/span&gt;video n.22&lt;span style=\&quot;mso-spacerun:yes\&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;            &lt;a href=\&quot;\[\[linkpath\]\]/index.php?&amp;amp;site=\[\[site\]\]&amp;amp;section=231&amp;amp;action=site\&quot;&gt; note sugli eventi di tastiera&lt;/a&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; class=\&quot;xl69\&quot; style=\&quot;height:15.0pt\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;Lun&lt;/span&gt;&lt;/td&gt;            &lt;td align=\&quot;center\&quot; class=\&quot;xl70\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;27-mag&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl71\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;Esercitazione 6&lt;br /&gt;            Novella Brugnolli            &lt;div align=\&quot;center\&quot;&gt;&lt;span style=\&quot;background-color: rgb(255, 255, 0);\&quot;&gt;&lt;font color=\&quot;#FFFF00\&quot;&gt;&lt;strong&gt;&lt;a href=\&quot;\[\[linkpath\]\]_userFiles/2013Programmazione2/ese6.pdf\&quot;&gt;SLIDES&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;            &lt;/span&gt;&lt;/td&gt;            &lt;td class=\&quot;xl69\&quot;&gt;&lt;span style=\&quot;background-color: rgb(0, 255, 0);\&quot;&gt;M-Z 14:30 ; A-L 16:30&lt;/span&gt;&lt;/td&gt;            &lt;td colspan=\&quot;6\&quot; style=\&quot;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr height=\&quot;15\&quot; style=\&quot;height:15.0pt\&quot;&gt;            &lt;td height=\&quot;15\&quot; colspan=\&quot;9\&quot; style=\&quot;height:15.0pt;mso-ignore:colspan\&quot;&gt;&amp;nbsp;&lt;/td&gt;            &lt;td class=\&quot;xl65\&quot;&gt;&amp;nbsp;&lt;/td&gt;            &lt;td class=\&quot;xl66\&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;</description>
		</item>
		<item>
			<title>Log delle consegne.</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1892&amp;detail=1892#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1892&amp;detail=1892#</guid>
			<pubDate>Fri, 22 Feb 2013 10:12:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1892&amp;detail=1892#&#039;&gt;Consegna e Avvisi &gt; Log delle consegne.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Per il 14/3, guardare il video delle lezione 7 e 8&lt;/li&gt;&lt;li&gt;Per il 7/3, guardare il video della lezione 6&lt;/li&gt;&lt;li&gt;Per il 5/3: guardare i seguenti video:&lt;ul&gt;&lt;li&gt; Lezione 4 dalla slide 60 (sec. 2545) &lt;/li&gt;&lt;li&gt; Lezione 5 - tutta&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt; Per il 26/2: riguardare le slides presentate nelle prime due lezioni. Le slides sono reperibili nella prima lezione della sezione \\\&quot;video\\\&quot;.&lt;/li&gt;&lt;/ul&gt;</description>
		</item>
		<item>
			<title>Esempi di esame</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1891&amp;detail=1891#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1891&amp;detail=1891#</guid>
			<pubDate>Thu, 21 Feb 2013 14:02:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1891&amp;detail=1891#&#039;&gt;Esame &gt; Esempi di esame&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;    &lt;li&gt;&lt;a href=\&quot;\[\[linkpath\]\]_userFiles/2009Programmazione2/Esame1aParte-Esempio.pdf\&quot;&gt;Parte prima&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;&lt;a href=\&quot;\[\[linkpath\]\]_userFiles/2009Programmazione2/Esame2aParte-Esempio.pdf\&quot;&gt;Parte seconda&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;</description>
		</item>
		<item>
			<title>Verbalizzazione</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1890&amp;detail=1890#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1890&amp;detail=1890#</guid>
			<pubDate>Thu, 21 Feb 2013 13:59:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1890&amp;detail=1890#&#039;&gt;Esame &gt; Verbalizzazione&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;La verbalizzazione dell\&#039;esame è elettronica.&lt;br /&gt;&lt;br /&gt;Lo studente riceverà una e-mail da Esse3 quando gli esiti dell\&#039;esame saranno pubblicati. Dovrà accedere ad Esse3 e VISIONARE  il voto, dopodichè sarà possibile RIFIUTARLO (di default, una volta visionato viene considerato accettato).&lt;br /&gt;&lt;br /&gt;Dopo due settimane dalla pubblicazione il docente potrà stampare le   verbalizzazione, e la segreteria provvederà a inserire in carriera il voto. In genere l\&#039;intero processo richiede dai 30 ai 45 giorni. &lt;br /&gt;&lt;br /&gt;NOTE: &lt;br /&gt;&lt;ul&gt;&lt;br /&gt;    &lt;li&gt;gli esami non visionati perderanno validità!&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;La firma sul libretto NON é necessaria! Studenti che desiderino   avere il libretto firmato possono comunque contattare il docente per &lt;a href=\&quot;mailto:marco.ronchetti@unitn.it?subject=Richiesta di firma sul libretto\&quot;&gt;e-mail&lt;/a&gt; per richiedere un appuntamento.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;</description>
		</item>
		<item>
			<title>Date di esame</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1889&amp;detail=1889#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1889&amp;detail=1889#</guid>
			<pubDate>Thu, 21 Feb 2013 13:58:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1889&amp;detail=1889#&#039;&gt;Esame &gt; Date di esame&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Si raccomanda di fare riferimento ad Esse3 per il controllo delle date.&lt;br /&gt;&lt;br /&gt;Sono previsti appelli il 7 giugno,  1 luglio, 12 settembre 2013. Vi saranno ulteriori appelli a gennaio e febbraio 2014.</description>
		</item>
		<item>
			<title>Iscrizione ed accesso all\&#039;esame</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1888&amp;detail=1888#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1888&amp;detail=1888#</guid>
			<pubDate>Thu, 21 Feb 2013 13:57:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=229&amp;page=789&amp;story=1888&amp;detail=1888#&#039;&gt;Esame &gt; Iscrizione ed accesso all\&#039;esame&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Per accedere all\&#039;esame è necessario iscriversi allo stesso tramite &lt;a href=\&quot;http://www.esse3.unitn.it/Start.do\&quot;&gt;Esse3&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Lo scopo dell\&#039;iscrizione all\&#039;&lt;span class=\&quot;il\&quot;&gt;esame&lt;/span&gt; è quello di   predisporre quanto necessario per la verbalizzazione elettronica, ma anche e soprattutto di permettere una opportuna pianificazione logistica (aule, sorveglianza...).&lt;br /&gt;&lt;br /&gt;E\&#039; quindi importante che - nel caso si decida di non partecipare   all\&#039;appello - si provveda a &lt;b&gt;CANCELLARE&lt;/b&gt; tempestivamente la propria   iscrizione. Nel caso non fosse possibile cancellare l\&#039;iscrizione perchè   le liste risultano già congelate, occorrerà &lt;b&gt;AVVISARE&lt;/b&gt; il docente per &lt;a href=\&quot;mailto:marco.ronchetti@unitn.it?subject=Avviso di assenza all\&#039;esame\&quot;&gt;e-mail&lt;/a&gt; dalla prevista  assenza.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Chi, essendo iscritto all\&#039;appello, non si presenterà allo stesso senza aver avvisato verrà escluso dall\&#039;appello successivo.&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;Ovviamente cause di forza maggiore dell\&#039;ultimo minuto potranno essere giustifcate.</description>
		</item>
		<item>
			<title>La consegna di questa settimana è...</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1885&amp;detail=1885#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1885&amp;detail=1885#</guid>
			<pubDate>Tue, 19 Feb 2013 8:58:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=232&amp;page=786&amp;story=1885&amp;detail=1885#&#039;&gt;Consegna e Avvisi &gt; La consegna di questa settimana è...&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Vedere sul calendario</description>
		</item>
		<item>
			<title>Testo consigliato

    ...</title>
			<link>http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=227&amp;page=785&amp;story=1884&amp;detail=1884#</link>
			<guid isPermaLink="true">http://latemar.science.unitn.it/segue/index.php?&amp;action=site&amp;site=2013Programmazione2&amp;section=227&amp;page=785&amp;story=1884&amp;detail=1884#</guid>
			<pubDate>Tue, 19 Feb 2013 8:56:00 +0100</pubDate>
			<author>Marco Ronchetti marco.ronchetti@unitn.it</author>
<description>&lt;a href=&#039;http://latemar.science.unitn.it/segue/index.php?&amp;amp;action=site&amp;amp;site=2013Programmazione2&amp;section=227&amp;page=785&amp;story=1884&amp;detail=1884#&#039;&gt;Informazioni Generali &gt; &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Testo consigliato&lt;/h3&gt;&lt;table cellspacing=\&quot;1\&quot; cellpadding=\&quot;1\&quot; border=\&quot;0\&quot;&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td&gt;&lt;img height=\&quot;100\&quot; alt=\&quot;\&quot; src=\&quot;\[\[linkpath\]\]_userFiles/2011Pogrammazione2/TiJ.jpg\&quot; /&gt;&lt;/td&gt;            &lt;td&gt;            &lt;p&gt;Il testo raccomandato &amp;egrave; &lt;strong&gt;&amp;quot;Thinking in Java&amp;quot; &lt;/strong&gt;di Bruce Eckel (in inglese), Editore Prentice Hall PTR, 4 Edizione (Febbraio 2006), ISBN &lt;span class=\&quot;product_text\&quot;&gt;88-7192-303-0, 53 Euro. &lt;br /&gt;            &lt;br /&gt;            Esiste una traduzione italiana, per la quale l\&#039;editore ha sciaguratamente diviso il testo intero in tre volumi: la parte fondamentale del corso &amp;egrave; nel primo volume (&lt;/span&gt;&lt;strong&gt;&amp;quot;Thinking in Java - Volume 1 - I fondamenti&amp;quot;&lt;/strong&gt;, Euro 35)&lt;span class=\&quot;product_text\&quot;&gt;, che per&amp;ograve; non copre interamente il corso: alcuni argomenti sono trattati anche in alcuni capitoli del secondo ed il terzo volume (ognuno del costo di 35 Euro). &lt;/span&gt;&lt;/p&gt;            &lt;p&gt;E\&#039; comunque disponibile gratuitamente la &lt;a rel=\&quot;nofollow\&quot; title=\&quot;http://latemar.science.unitn.it/marco/Didattica/aa_2004_2005/Programmazione2/files/49591/TIJ-3rd-edition4.0.zip\&quot; class=\&quot;external text\&quot; href=\&quot;http://www.mindview.net/Books/TIJ/\&quot;&gt;versione elettronica &lt;/a&gt; della (precedente) 3a edizione (intera), in inglese.&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;div class=\&quot;hr\&quot;&gt;&lt;hr /&gt;&lt;/div&gt;&lt;h3&gt;The Java Tutorial&lt;/h3&gt;Sul sito della Sun &amp;egrave; disponibile la collezione dei &lt;a href=\&quot;http://java.sun.com/docs/books/tutorial/\&quot;&gt;Java Tutorials&lt;/a&gt;,  che vengono costantemente aggiornati e sono un eccellente punto di  partenza per approfondire i vari aspetti della programmazione in Java.&lt;br /&gt;I due trails &amp;quot;Basics&amp;quot; e &amp;quot;GUI&amp;quot; sono rilevanti per il corso. Gli altri  trails introducono a tematiche non trattate nel corso stesso.&lt;div class=\&quot;hr\&quot;&gt;&lt;hr /&gt;&lt;/div&gt;&lt;div style=\&quot;margin-bottom: 10px;\&quot;&gt;&lt;div class=\&quot;leftmargin\&quot;&gt;&lt;strong&gt;&lt;h3&gt;The Swing Book&lt;/h3&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class=\&quot;desc\&quot;&gt;Un &lt;a href=\&quot;../MARCO/DIDATTICA/AA_2004_2005/PROGRAMMAZIONE2/FILES/49591/SWINGDOC.ZIP\&quot;&gt;libro elettronico&lt;/a&gt;  di approfondimento della libreria grafica Swing. Contiene materiale  avanzato, che va oltre quanto richiesto per il corso. Non &amp;egrave; nuovissimo  ma va ancora bene.&lt;br /&gt;E\&#039; disponibile anche il &lt;a href=\&quot;../MARCO/DIDATTICA/AA_2004_2005/PROGRAMMAZIONE2/FILES/49591/SWING.ZIP\&quot;&gt;codice sorgente&lt;/a&gt; degli esempi contenuti nel libro. (L\&#039; originale &amp;egrave; su &lt;a href=\&quot;http://www.javafaq.nu/java/free-swing-book/\&quot;&gt;javafaq.nu&lt;/a&gt;)&lt;/div&gt;&lt;/div&gt;</description>
		</item>
	</channel>
</rss>