00001
00004 package irc;
00005
00006
00007
00008
00009
00010
00011 public class JvnSentence extends jvn.JvnObjectImpl implements java.io.Serializable {
00012
00013
00014 private Sentence __myJvnObject = null;
00015
00016
00017
00018
00019
00020
00021
00022 private JvnSentence (java.io.Serializable o) {
00023 super(o);
00024 __myJvnObject = (Sentence)o;
00025 }
00026
00027
00028 public
00029 JvnSentence()
00030 throws jvn.JvnException
00031 {
00032 this((java.io.Serializable)(new Sentence()));
00033 }
00034
00035
00036 @jvn.NotNull()
00037 public
00038 JvnSentence(@jvn.NotNull() java.util.ArrayList<java.lang.Object> param0, java.lang.String param1, @jvn.NotNull() int param2)
00039 throws java.lang.Exception, jvn.JvnException
00040 {
00041 this((java.io.Serializable)(new Sentence(param0, param1, param2)));
00042 }
00043
00044
00045 @jvn.JvnRead()
00046 public
00047 java.lang.String
00048 read()
00049 throws jvn.JvnException
00050 {
00051 if (__myJvnObject != null) {
00052 java.lang.String returnVal;
00053 this.jvnLockRead();
00054 returnVal = __myJvnObject.read();
00055 this.jvnUnLock();
00056 return returnVal;
00057 }
00058 else {
00059 throw new jvn.JvnException("JvnSentence instance " + this + " not initialized !");
00060 }
00061 }
00062
00063
00064 @jvn.JvnWrite()
00065 public
00066 void
00067 write(java.lang.String param0)
00068 throws jvn.JvnException
00069 {
00070 if (__myJvnObject != null) {
00071 this.jvnLockWrite();
00072 __myJvnObject.write(param0);
00073 this.jvnUnLock();
00074 }
00075 else {
00076 throw new jvn.JvnException("JvnSentence instance " + this + " not initialized !");
00077 }
00078 }
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115 }