1 23 24 package org.objectweb.fractal.gui.dialog.model; 25 26 import javax.swing.ListSelectionModel ; 27 import javax.swing.table.TableModel ; 28 import javax.swing.text.Document ; 29 30 34 35 public interface DialogModel { 36 37 44 45 TableModel getClientInterfacesTableModel(); 46 47 54 55 ListSelectionModel getClientInterfacesTableSelectionModel(); 56 57 64 65 TableModel getServerInterfacesTableModel(); 66 67 74 75 InterfaceTableSelectionModel getServerInterfacesTableSelectionModel(); 76 77 82 83 TableModel getAttributesTableModel(); 84 85 92 93 ListSelectionModel getAttributesTableSelectionModel(); 94 95 100 101 Document getNameFieldModel(); 102 103 108 109 Document getTypeFieldModel(); 110 111 118 119 Document getImplementationFieldModel(); 120 121 128 129 Document getAttrControllerFieldModel(); 130 131 138 139 Document getTmplControllerDescFieldModel(); 140 141 148 149 Document getCompControllerDescFieldModel(); 150 } 151 | Popular Tags |