Sentence.java

Go to the documentation of this file.
00001 package irc;
00002 
00003 import jvn.JvnRead;
00004 import jvn.JvnWrite;
00005 import jvn.NotNull;
00006 
00017 public class Sentence implements java.io.Serializable {
00021         private static final long serialVersionUID = -5744335023076980519L;
00022         String          data;
00023 
00024         public Sentence() {
00025                 data = new String("");
00026         }
00027 
00028         /*@NotNull public Sentence(@NotNull java.util.ArrayList<Object> dummy, String dummy2, @NotNull int dummy3) throws Exception {
00029                 this();
00030         }*/
00031 
00032         @JvnWrite public void write(String text) {
00033                 data = text;
00034         }
00035         @JvnRead public String read() {
00036                 return data;
00037         }
00038 
00039         /*public void foo() {
00040 
00041         }*/
00042 
00043 }

Generated on Wed Jan 2 10:15:54 2008 for Javanaise by  doxygen 1.5.4