JavaBeans: Difference between revisions

Content deleted Content added
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags
Tags: AWB Reverted
Undid revision 956137145 by DannyS712 bot (talk)
Line 71:
 
===Code example===
<syntaxhighlightsource lang=Java>
package player;
 
Line 128:
}
}
</source>
</syntaxhighlight>
 
'''<u><code>TestPersonBean.java</code></u>''':
<syntaxhighlightsource lang=Java>
import player.PersonBean;
 
Line 155:
}
}
</source>
</syntaxhighlight>
 
<syntaxhighlightsource lang="xml">
<jsp:useBean id="person" class="player.PersonBean" scope="page"/>
<jsp:setProperty name="person" property="*"/>
Line 177:
</body>
</html>
</source>
</syntaxhighlight>
 
==References==