Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 828 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/objects/BridgeToOneRightSet.java

Diff revisions: vs.
  @@ -7,23 +7,23 @@
7 7
8 8 public class BridgeToOneRightSet extends AbstractBridgeToOneSet
9 9 {
10 - public BridgeToOneRightSet( ASet pPersistedSet )
10 + public BridgeToOneRightSet( ASet pPersisted )
11 11 {
12 - super( SORT_BridgeToOneRight, A_BridgeToOneRight.TYPE, pPersistedSet );
12 + super( new AttributeSetBuilder( A_BridgeToOneRight.TYPE ).sortIndex( SORT_BridgeToOneRight ).persisted( pPersisted ) );
13 13 }
14 14
15 - public BridgeToOneRightSet( PropertyMetaData... pPMDs )
15 + public BridgeToOneRightSet( PropertyMetaData... pPersistedPMDs )
16 16 {
17 - this( new ASet( pPMDs ) );
17 + this( new ASet( pPersistedPMDs ) );
18 18 }
19 19
20 - public BridgeToOneRightSet( String pAcceptablePOtype, PropertyMetaData... pPMDs )
20 + public BridgeToOneRightSet( String pAcceptablePOtype, PropertyMetaData... pPersistedPMDs )
21 21 {
22 - this( new ASet( pAcceptablePOtype, pPMDs ) );
22 + this( new ASet( pAcceptablePOtype, pPersistedPMDs ) );
23 23 }
24 24
25 - public BridgeToOneRightSet( Set<String> pAcceptablePOtypes, PropertyMetaData... pPMDs )
25 + public BridgeToOneRightSet( Set<String> pAcceptablePOtypes, PropertyMetaData... pPersistedPMDs )
26 26 {
27 - this( new ASet( pAcceptablePOtypes, pPMDs ) );
27 + this( new ASet( pAcceptablePOtypes, pPersistedPMDs ) );
28 28 }
29 29 }