Subversion Repository Public Repository

litesoft

Diff Revisions 21 vs 24 for /trunk/Java/core/Server/src/org/litesoft/orsup/otherattributeaccessors/AttributeAccessorSCDtoOnePaired.java

Diff revisions: vs.
  @@ -25,21 +25,25 @@
25 25 // Nothing to do!
26 26 }
27 27
28 + @Override
28 29 public final void setValueOnPO( Owner pPO, Object pValue )
29 30 {
30 31 throw new IllegalArgumentException( "Direct setting of a Paired To One relationship is Not Supported for type (" +
31 32 Utils.classNameOf( pValue ) + ") w/ value: " + pValue );
32 33 }
33 34
35 + @Override
34 36 public final Object db_getValueOnPO( Owner pPO )
35 37 {
36 38 throw new IllegalStateException( "Paired To One relationship is NOT Persisted" );
37 39 }
38 40
41 + @Override
39 42 public final void db_setValueOnPO( Owner pPO, Object pValue )
40 43 {
41 44 throw new IllegalStateException( "Paired To One relationship is NOT Persisted" );
42 45 }
43 46
47 + @Override
44 48 abstract public LazyLoadToOnePaired<Owner, Them> getValueHolder( Owner pPO );
45 49 }