371372373374375376377378379380381
XMLPanel p; if (el != null) { p = this.panelGenerator.getPanel(el); } else { p = new XMLBasicPanel(); } setViewPanel(p); if (p instanceof XMLTabbedPanel) { Integer at = (Integer) lastActiveTabs.get(el.getClass()); if (at != null) {
96979899100101102103104
JaWEManager.getInstance().getLabelGenerator().getLabel(el), false); } else if (panels.size() == 1) { return (XMLPanel) panels.get(0); } else { return new XMLBasicPanel(); } }
252253254255256257258
public XMLPanel getPanel(Author el) { return generateStandardPanel(el); } public XMLPanel getPanel(Automatic el) { return new XMLBasicPanel(); }
587588589590591592593594595
615616617618619620621622623
1098109911001101110211031104
JaWEManager.getInstance().getLabelGenerator().getLabel(el), true, false, true); } return new XMLBasicPanel(); }
11781179118011811182118311841185
120612071208120912101211121212131214
1379138013811382138313841385
} return generateStandardPanel(el); } public XMLPanel getPanel(XMLEmptyChoiceElement el) { return new XMLBasicPanel(); }
153415351536153715381539154015411542
} else if (el instanceof XMLCollection) { // CUSTOM: show standard list instead of table panel = generateStandardListPanel((XMLCollection) el, true, false); // END CUSTOM } else { panel = new XMLBasicPanel(); } return panel; }