1 2 package org.jboss.test.support.jar1.simple1; 3 4 import java.math.BigDecimal ; 5 import java.math.BigInteger ; 6 import java.util.Date ; 7 8 14 public interface ISimpleBean 15 { 16 18 20 String getConstructorUsed(); 21 22 BigDecimal getABigDecimal(); 23 24 void setABigDecimal(BigDecimal bigDecimal); 25 26 BigInteger getABigInteger(); 27 28 void setABigInteger(BigInteger bigInteger); 29 30 boolean isAboolean(); 31 32 void setAboolean(boolean aboolean); 33 34 Boolean getABoolean(); 35 36 void setABoolean(Boolean boolean1); 37 38 byte getAbyte(); 39 40 void setAbyte(byte abyte); 41 42 Byte getAByte(); 43 44 void setAByte(Byte byte1); 45 46 char getAchar(); 47 48 void setAchar(char achar); 49 50 Character getACharacter(); 51 52 void setACharacter(Character character); 53 54 Date getADate(); 55 56 void setADate(Date date); 57 58 double getAdouble(); 59 60 void setAdouble(double adouble); 61 62 Double getADouble(); 63 64 void setADouble(Double double1); 65 66 float getAfloat(); 67 68 void setAfloat(float afloat); 69 70 Float getAFloat(); 71 72 void setAFloat(Float float1); 73 74 long getAlong(); 75 76 void setAlong(long along); 77 78 Long getALong(); 79 80 void setALong(Long long1); 81 82 int getAnint(); 83 84 void setAnint(int anint); 85 86 Integer getAnInt(); 87 88 void setAnInt(Integer anInt); 89 90 short getAshort(); 91 92 void setAshort(short ashort); 93 94 Short getAShort(); 95 96 void setAShort(Short short1); 97 98 String getAString(); 99 100 void setAString(String string); 101 102 ISimpleBean getOther(); 103 104 void setOther(ISimpleBean other); 105 106 } | Popular Tags |