|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ViewFactory | |
org.objectweb.jac.aspects.gui | |
org.objectweb.jac.aspects.gui.swing | |
org.objectweb.jac.aspects.gui.web | |
org.objectweb.jac.ide.diagrams |
Uses of ViewFactory in org.objectweb.jac.aspects.gui |
Methods in org.objectweb.jac.aspects.gui that return ViewFactory | |
ViewFactory |
View.getFactory()
Gets the factory. |
static ViewFactory |
GuiAC.getViewFactory(String guiType)
Returns a ViewFactory for a given guiType |
ViewFactory |
CustomizedDisplay.getFactory()
Returns the ViewFactory of the display. |
Methods in org.objectweb.jac.aspects.gui with parameters of type ViewFactory | |
static void |
ViewFactory.init(String type,
ViewFactory f)
Init a swing factory by setting the constuctor types. |
void |
View.setFactory(ViewFactory factory)
Sets the factory for this view (WEB, SWING or other supported factory). |
Object |
TableModel.getCellRenderer(View tableView,
int column,
ViewFactory factory,
DisplayContext context)
|
static Object |
TableModel.getCellRenderer(View tableView,
Object substance,
MemberItem member,
String header,
CollectionItemView collectionView,
ViewFactory factory,
DisplayContext context)
|
Map |
TableFilter.buildFilterEditors(ViewFactory factory,
DisplayContext context)
Build filter editor components for each filtered column |
static Display |
GuiAC.createDisplay(String displayID,
Class displayType,
ViewFactory factory)
Creates a new display and registers it. |
static View |
GenericFactory.createObjectView(ViewFactory factory,
DisplayContext context,
String viewName,
Object substance)
Creates a view on an object. |
static View |
GenericFactory.createObjectViewNoTab(ViewFactory factory,
DisplayContext context,
Object substance)
Creates a view of an object (containing no tabs). |
protected static CompositeView |
GenericFactory.createObjectView(ViewFactory factory,
DisplayContext context,
ObjectView view,
Object substance,
String category)
Create a view of an object, including only the attributes of a category. |
static View |
GenericFactory.getFieldPane(ViewFactory factory,
DisplayContext context,
Object substance,
ObjectView objectView,
FieldItem field,
boolean embedded)
|
protected static boolean |
GenericFactory.getViewer(Object substance,
FieldItem field,
Object value,
CompositeView container,
ViewFactory factory,
DisplayContext context)
Instantiates a viewer for a value of a field and add it to a container. |
protected static View |
GenericFactory.getPrimitiveFieldPane(ViewFactory factory,
DisplayContext context,
Object substance,
FieldItem field,
ObjectView objectView,
MemberItemView memberView,
boolean embedded)
Returns a view of a primitive field. |
protected static View |
GenericFactory.getReferenceFieldPane(ViewFactory factory,
DisplayContext context,
Object substance,
FieldItem field,
boolean embedded,
ObjectView objectView,
MemberItemView memberView)
Build a view containing a label for the name of the field, and the view of the reference. |
protected static View |
GenericFactory.getEditButton(ViewFactory factory,
Object substance,
FieldItem field,
DisplayContext context)
Constructs an edit button for reference views. |
static View |
GenericFactory.getCollectionPane(ViewFactory factory,
DisplayContext context,
Object substance,
ObjectView objectView,
CollectionItemView memberView,
CollectionItem collection)
Builds a view that will display a given collection field of an object. |
protected static CompositeView |
GenericFactory.getMethodsPane(ViewFactory factory,
DisplayContext context,
Object substance,
Collection methods,
String category,
ObjectView objectView)
Gets a composite panel containing a set of methods that are held by the substance object. |
static MethodView |
GenericFactory.getMethodView(AbstractMethodItem method,
Object substance,
DisplayContext context,
ViewFactory factory,
MemberItemView memberView)
Build view for a method |
static View |
GenericFactory.createParameters(ViewFactory factory,
DisplayContext context,
AbstractMethodItem method,
Object substance,
Object[] parameters)
Create a view containing editor components for the parameters of a method. |
static FieldEditor |
GenericFactory.getEditorComponent(ViewFactory factory,
DisplayContext context,
Object substance,
AbstractMethodItem method,
int i,
boolean embedded,
Object value)
Returns a ValueEditor suitable for editing the i-th parameter of a method. |
static void |
GenericFactory.initCustomized(ViewFactory factory,
DisplayContext context,
CompositeView internalView,
CustomizedGUI customized,
Map panels)
Initialize the panels of a customized gui. |
static void |
GenericFactory.setStatusBar(ViewFactory factory,
DisplayContext context,
CustomizedView view,
MethodItem statusBar,
String position)
Sets a status bar to a customized view. |
static void |
GenericFactory.setMenuBars(ViewFactory factory,
DisplayContext context,
CustomizedView view,
Hashtable menuBars)
Build the menu bar of a customized gui. |
static MenuView |
GenericFactory.createMenu(ViewFactory factory,
DisplayContext context,
String label,
Menu content)
Creates a menu in a a customized gui. |
static void |
GenericFactory.setToolBar(ViewFactory factory,
DisplayContext context,
CustomizedView view,
Collection toolbar)
Build the toolbar of a customized gui. |
static FieldEditor |
GenericFactory.createReferenceEditor(ViewFactory factory,
DisplayContext context,
Object substance,
FieldItem field,
String editorName,
ClassItem type,
Predicate predicate,
boolean nullAllowed,
String nullLabel,
boolean isCreationAllowed)
A generic view builder for a reference editor. |
static FieldEditor |
GenericFactory.createEnumEditor(ViewFactory factory,
DisplayContext context,
Object substance,
FieldItem field,
String editorName,
Enum enum,
boolean nullAllowed,
String nullLabel)
|
Object |
ExtendedTableModel.getCellRenderer(View tableView,
int column,
ViewFactory factory,
DisplayContext context)
Build a cell render for a given column. |
void |
EventHandler.maybeInvalidatePane(ViewFactory factory,
DisplayContext context,
CustomizedView customizedView,
String selectedPaneID)
Removes the content of pane when another pane's content is changed |
Constructors in org.objectweb.jac.aspects.gui with parameters of type ViewFactory | |
TableModel(CollectionItem collection,
Object substance,
String viewName,
ViewFactory factory)
Creates a new table model. |
Uses of ViewFactory in org.objectweb.jac.aspects.gui.swing |
Methods in org.objectweb.jac.aspects.gui.swing that return ViewFactory | |
ViewFactory |
SwingMethodView.getFactory()
|
ViewFactory |
SwingLabel.getFactory()
|
ViewFactory |
SwingDisplay.getFactory()
|
ViewFactory |
SwingCustomized.getFactory()
|
ViewFactory |
MenuBar.getFactory()
|
ViewFactory |
Menu.getFactory()
|
ViewFactory |
Dialog.getFactory()
|
ViewFactory |
DesktopView.getFactory()
|
ViewFactory |
AbstractView.getFactory()
|
Methods in org.objectweb.jac.aspects.gui.swing with parameters of type ViewFactory | |
void |
SwingMethodView.setFactory(ViewFactory factory)
|
void |
SwingLabel.setFactory(ViewFactory factory)
|
void |
SwingCustomized.setFactory(ViewFactory factory)
|
void |
MenuBar.setFactory(ViewFactory factory)
|
void |
Menu.setFactory(ViewFactory factory)
|
void |
Dialog.setFactory(ViewFactory factory)
|
void |
DesktopView.setFactory(ViewFactory factory)
|
void |
AbstractView.setFactory(ViewFactory factory)
|
Uses of ViewFactory in org.objectweb.jac.aspects.gui.web |
Methods in org.objectweb.jac.aspects.gui.web that return ViewFactory | |
ViewFactory |
WebDisplay.getFactory()
|
ViewFactory |
AbstractView.getFactory()
|
Methods in org.objectweb.jac.aspects.gui.web with parameters of type ViewFactory | |
void |
AbstractView.setFactory(ViewFactory factory)
|
Uses of ViewFactory in org.objectweb.jac.ide.diagrams |
Constructors in org.objectweb.jac.ide.diagrams with parameters of type ViewFactory | |
DiagramView(ViewFactory factory,
DisplayContext context,
Object diagram)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |