Methods Summary |
---|
public boolean | equals(java.lang.Object that)
FooComponent fc = (FooComponent) that;
return count==fc.count;
|
public Baz | getBaz()
return baz;
|
public int | getCount()
return count;
|
public Fee | getFee()
return fee;
|
public GlarchProxy | getGlarch()
return glarch;
|
public java.util.Date[] | getImportantDates()
return importantDates;
|
public java.lang.String | getName()
return name;
|
private java.lang.String | getNull()
return null;
|
public FooProxy | getParent()
return parent;
|
public org.hibernate.test.legacy.FooComponent | getSubcomponent()
return subcomponent;
|
public int | hashCode()
return count;
|
public void | setBaz(Baz baz)
this.baz = baz;
|
public void | setCount(int count)
this.count = count;
|
public void | setFee(Fee fee)
this.fee = fee;
|
public void | setGlarch(GlarchProxy glarch)
this.glarch = glarch;
|
public void | setImportantDates(java.util.Date[] importantDates)
this.importantDates = importantDates;
|
public void | setName(java.lang.String name)
this.name = name;
|
private void | setNull(java.lang.String str)
if (str!=null) throw new Exception("null component property");
|
public void | setParent(FooProxy parent)
//if (parent==null) throw new RuntimeException("null parent set");
this.parent = parent;
|
public void | setSubcomponent(org.hibernate.test.legacy.FooComponent subcomponent)
this.subcomponent = subcomponent;
|
public java.lang.String | toString()
String result = "FooComponent: " + name + "=" + count;
result+="; dates=[";
if ( importantDates!=null) {
for ( int i=0; i<importantDates.length; i++ ) {
result+=(i==0 ?"":", ") + importantDates[i];
}
}
result+="]";
if ( subcomponent!=null ) {
result+= " (" + subcomponent + ")";
}
return result;
|