JavaBeans: Difference between revisions

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