Subversion Repository Public Repository

litesoft

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

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