summaryrefslogtreecommitdiff
path: root/tutorial/examples/mixin/Textbox.oj
blob: a3313d046e57df31e22527c4b2f1b51cbe0fc078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package examples.mixin;


public class Textbox extends java.awt.Component
{
    String text = null;

    /* ..... */

    public String getText() {
    return text;
    }

    public void setText(String s) {
    text = s;
    }
}