1 | To a standard hello world Java class, we add a (read/write) property by defining get and set functions in the correct pattern. |
2 | import java.awt.* |
3 | public class HelloBean extends java.applet.Applet |
4 | implements java.io.Serializable |
5 | { String sname = "World"; |
6 | public void setName (String newname) |
7 | { sname = newname; } |
8 | public String getName ( ) |
9 | { return sname; } |
10 | Enables saving as Object |
11 | Class variable for value of property |
12 | Get and set methods define a property called Name with a value of type String |