KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sshtools > ui > awt > options > Option


1 package com.sshtools.ui.awt.options;
2
3
4 public class Option {
5
6   private String JavaDoc text;
7
8   public Option(String JavaDoc text) {
9     this.text = text;
10   }
11
12   public String JavaDoc getText() {
13     return text;
14   }
15 }
Popular Tags