summaryrefslogtreecommitdiff
path: root/tutorial/examples/mixin/Textbox.java
blob: 5b0e06bcec49a8e6f2b113fe60aed708452bc53c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * This code was generated by ojc.
 */
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;
    }

}