OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 174 Rev 177
Line 35... Line 35...
35
    private LightUIPanel titlePanel = null;
35
    private LightUIPanel titlePanel = null;
36
    private LightUIPanel contentPanel;
36
    private LightUIPanel contentPanel;
37
    private LightUIPanel footerPanel = new LightUIPanel(this.getId() + ".footer.panel");
37
    private LightUIPanel footerPanel = new LightUIPanel(this.getId() + ".footer.panel");
38
 
38
 
39
    private List<LightUIFrame> childrenFrame;
39
    private List<LightUIFrame> childrenFrame;
-
 
40
    private List<LightUIElement> asynchronousChildren = new ArrayList<>();
40
 
41
 
41
    public LightUIFrame() {
42
    public LightUIFrame() {
42
        // Serialization
43
        // Serialization
43
    }
44
    }
44
 
45
 
Line 340... Line 341...
340
        if (in.readBoolean()) {
341
        if (in.readBoolean()) {
341
            this.footerPanel = (LightUIPanel) in.readObject();
342
            this.footerPanel = (LightUIPanel) in.readObject();
342
        }
343
        }
343
    }
344
    }
344
 
345
 
-
 
346
    public List<LightUIElement> getAsynchronousChildren() {
-
 
347
        return this.asynchronousChildren;
-
 
348
    }
345
}
349
}