home *** CD-ROM | disk | FTP | other *** search
- import java.awt.Color;
- import java.awt.Font;
-
- public class SampleData {
- protected Font font;
- protected Color color;
- protected String string;
-
- public SampleData(Font var1, Color var2, String var3) {
- this.font = var1;
- this.color = var2;
- this.string = var3;
- }
-
- public void setFont(Font var1) {
- this.font = var1;
- }
-
- public Font getFont() {
- return this.font;
- }
-
- public void setColor(Color var1) {
- this.color = var1;
- }
-
- public Color getColor() {
- return this.color;
- }
-
- public void setString(String var1) {
- this.string = var1;
- }
-
- public String string() {
- return this.string;
- }
-
- public String toString() {
- return this.string;
- }
- }
-