1 4 package test.interfaces; 5 6 13 public interface AllTypesEntity 14 extends javax.ejb.EJBObject 15 { 16 17 public int[] getIVOwnerHdl( ) 18 throws java.rmi.RemoteException ; 19 20 public java.lang.String getId( ) 21 throws java.rmi.RemoteException ; 22 23 26 public boolean getABoolean( ) 27 throws java.rmi.RemoteException ; 28 29 32 public void setABoolean( boolean aBoolean ) 33 throws java.rmi.RemoteException ; 34 35 38 public byte getAByte( ) 39 throws java.rmi.RemoteException ; 40 41 44 public void setAByte( byte aByte ) 45 throws java.rmi.RemoteException ; 46 47 50 public short getAShort( ) 51 throws java.rmi.RemoteException ; 52 53 56 public void setAShort( short aShort ) 57 throws java.rmi.RemoteException ; 58 59 62 public char getAChar( ) 63 throws java.rmi.RemoteException ; 64 65 68 public void setAChar( char aChar ) 69 throws java.rmi.RemoteException ; 70 71 74 public int getAnInt( ) 75 throws java.rmi.RemoteException ; 76 77 80 public void setAnInt( int anInt ) 81 throws java.rmi.RemoteException ; 82 83 86 public long getALong( ) 87 throws java.rmi.RemoteException ; 88 89 92 public void setALong( long aLong ) 93 throws java.rmi.RemoteException ; 94 95 98 public float getAFloat( ) 99 throws java.rmi.RemoteException ; 100 101 104 public void setAFloat( float aFloat ) 105 throws java.rmi.RemoteException ; 106 107 110 public double getADouble( ) 111 throws java.rmi.RemoteException ; 112 113 116 public void setADouble( double aDouble ) 117 throws java.rmi.RemoteException ; 118 119 122 public java.lang.Object getAnObject( ) 123 throws java.rmi.RemoteException ; 124 125 128 public void setAnObject( java.lang.Object anObject ) 129 throws java.rmi.RemoteException ; 130 131 134 public java.lang.Object [] getAnObjectArray( ) 135 throws java.rmi.RemoteException ; 136 137 140 public void setAnObjectArray( java.lang.Object [] anObjectArray ) 141 throws java.rmi.RemoteException ; 142 143 146 public boolean[] getABooleanArray( ) 147 throws java.rmi.RemoteException ; 148 149 152 public void setABooleanArray( boolean[] aBooleanArray ) 153 throws java.rmi.RemoteException ; 154 155 158 public byte[] getAByteArray( ) 159 throws java.rmi.RemoteException ; 160 161 164 public void setAByteArray( byte[] aByteArray ) 165 throws java.rmi.RemoteException ; 166 167 170 public char[] getACharArray( ) 171 throws java.rmi.RemoteException ; 172 173 176 public void setACharArray( char[] aCharArray ) 177 throws java.rmi.RemoteException ; 178 179 182 public short[] getAShortArray( ) 183 throws java.rmi.RemoteException ; 184 185 188 public void setAShortArray( short[] aShortArray ) 189 throws java.rmi.RemoteException ; 190 191 194 public int[] getAnIntArray( ) 195 throws java.rmi.RemoteException ; 196 197 200 public void setAnIntArray( int[] anIntArray ) 201 throws java.rmi.RemoteException ; 202 203 206 public long[] getALongArray( ) 207 throws java.rmi.RemoteException ; 208 209 212 public void setALongArray( long[] aLongArray ) 213 throws java.rmi.RemoteException ; 214 215 218 public float[] getAFloatArray( ) 219 throws java.rmi.RemoteException ; 220 221 224 public void setAFloatArray( float[] aFloatArray ) 225 throws java.rmi.RemoteException ; 226 227 230 public double[] getADoubleArray( ) 231 throws java.rmi.RemoteException ; 232 233 236 public void setADoubleArray( double[] aDoubleArray ) 237 throws java.rmi.RemoteException ; 238 239 242 public java.util.Date getCreationDate( ) 243 throws java.rmi.RemoteException ; 244 245 public void setCreationDate( java.util.Date creationDate ) 246 throws java.rmi.RemoteException ; 247 248 } 249 | Popular Tags |