Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/core/Server/src/org/litesoft/orsup/otherattributeaccessors/AttributeAccessorSCDtoManyRegular.java

Diff revisions: vs.
  @@ -6,22 +6,18 @@
6 6 import org.litesoft.orsup.lazyload.*;
7 7 import org.litesoft.orsup.nonpublic.*;
8 8
9 - public abstract class AttributeAccessorSCDtoManyRegular<Owner extends PersistentObjectImpl, Them extends PersistentObjectImpl>
10 - extends AbstractAttributeAccessorSCDtoMany<Owner, Them>
9 + public abstract class AttributeAccessorSCDtoManyRegular<Owner extends PersistentObjectImpl, Them extends PersistentObjectImpl> extends AbstractAttributeAccessorSCDtoMany<Owner, Them>
11 10 {
12 11 private String mOurKeyAttribute;
13 12
14 - protected AttributeAccessorSCDtoManyRegular( String pName, String pOurKeyAttribute, String pToManyTypeName, String pBackReference, String pOrderByAttribute,
15 - boolean pThemDependantOnUs, boolean pRequired, Mutability pMutability )
13 + protected AttributeAccessorSCDtoManyRegular( String pName, String pOurKeyAttribute, String pToManyTypeName, String pBackReference, String pOrderByAttribute, boolean pThemDependantOnUs, boolean pRequired, Mutability pMutability )
16 14 {
17 15 super( pName, pToManyTypeName, pBackReference, pOrderByAttribute, pThemDependantOnUs, pRequired, _ToMany.updateMutability( pMutability ) );
18 16 mOurKeyAttribute = pOurKeyAttribute;
19 17 }
20 18
21 19 protected AttributeAccessorSCDtoManyRegular( String pName, String pOurKeyAttribute, Class pToManyType, //
22 - String pBackReference, String pOrderByAttribute,
23 - Mutability pMutability, boolean pRequired,
24 - boolean pThemDependantOnUs )
20 + String pBackReference, String pOrderByAttribute, Mutability pMutability, boolean pRequired, boolean pThemDependantOnUs )
25 21 {
26 22 this( pName, pOurKeyAttribute, pToManyType.getName(), pBackReference, pOrderByAttribute, pThemDependantOnUs, pRequired, pMutability );
27 23 }