Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 24 for /trunk/Java/core/Server/src/org/litesoft/orsup/base/AbstractAttributeAccessorSCDtoMany.java

Diff revisions: vs.
  @@ -24,22 +24,26 @@
24 24 return mOrderByAttribute;
25 25 }
26 26
27 + @Override
27 28 public Form getForm()
28 29 {
29 30 return Form.ToMany;
30 31 }
31 32
33 + @Override
32 34 abstract public AbstractLazyLoadToMany<Owner, Them> getValueHolder( Owner pPO );
33 35
34 36 abstract public void addValueOnPO( Owner pPO, Object pValue );
35 37
36 38 abstract public void removeValueOnPO( Owner pPO, Object pValue );
37 39
40 + @Override
38 41 public final Object db_getValueOnPO( Owner pPO )
39 42 {
40 43 throw new UnsupportedOperationException( "Persistence not supported on To Many" );
41 44 }
42 45
46 + @Override
43 47 public final void db_setValueOnPO( Owner pPO, Object pValue )
44 48 {
45 49 throw new UnsupportedOperationException( "Persistence not supported on To Many" );