OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 94 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 94 Rev 156
Line 39... Line 39...
39
    };
39
    };
40
 
40
 
41
    private int order;
41
    private int order;
42
    private final List<Tuple2<Item, Integer>> list;
42
    private final List<Tuple2<Item, Integer>> list;
43
 
43
 
-
 
44
    private String tabId;
-
 
45
 
44
    public Group(final String id) {
46
    public Group(final String id) {
45
        this(id, LayoutHints.DEFAULT_GROUP_HINTS);
47
        this(id, LayoutHints.DEFAULT_GROUP_HINTS);
46
    }
48
    }
47
 
49
 
48
    public Group(final String id, final LayoutHints hint) {
50
    public Group(final String id, final LayoutHints hint) {
Line 294... Line 296...
294
            if (!thisChild.get1().equals(oChild.get1()) || !thisChild.get0().equalsDesc(oChild.get0()))
296
            if (!thisChild.get1().equals(oChild.get1()) || !thisChild.get0().equalsDesc(oChild.get0()))
295
                return false;
297
                return false;
296
        }
298
        }
297
        return true;
299
        return true;
298
    }
300
    }
-
 
301
 
-
 
302
    public void setTabId(String tabId) {
-
 
303
        this.tabId = tabId;
-
 
304
    }
-
 
305
 
-
 
306
    public String getTabId() {
-
 
307
        return this.tabId;
-
 
308
    }
299
}
309
}