Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -3,23 +3,8 @@
3 3
4 4 public abstract class AbstractUiCRUDrelatedSet extends UiCRUDpSet
5 5 {
6 - public AbstractUiCRUDrelatedSet( int pSortIndex, AttributeType pType, ASet pPersisted, ASet pVirtual )
6 + protected AbstractUiCRUDrelatedSet( AttributeSetBuilder pBuilder )
7 7 {
8 - super( pSortIndex, pType, pPersisted, pVirtual );
9 - }
10 -
11 - public AbstractUiCRUDrelatedSet( AttributeType pType, ASet pPersisted, ASet pVirtual )
12 - {
13 - super( pType, pPersisted, pVirtual );
14 - }
15 -
16 - public AbstractUiCRUDrelatedSet( int pSortIndex, AttributeType pType, ASet pPersisted )
17 - {
18 - super( pSortIndex, pType, pPersisted );
19 - }
20 -
21 - public AbstractUiCRUDrelatedSet( AttributeType pType, ASet pPersisted )
22 - {
23 - super( pType, pPersisted );
8 + super( pBuilder );
24 9 }
25 10 }