|
WebObjects 5.2.3 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EOComponentController | |
com.webobjects.eoapplication | Provides application logic utility classes to the client side of Java Client applications. |
com.webobjects.eoapplication.client | |
com.webobjects.eogeneration | Provides infrastructure for dynamically generating complete user interfaces in Java Client applications from XML descriptions of controller hierarchies. |
Uses of EOComponentController in com.webobjects.eoapplication |
Subclasses of EOComponentController in com.webobjects.eoapplication | |
class |
EOActionButtonsController
|
class |
EOActionMenuController
|
class |
EOActionTrigger
|
class |
EOActionWidgetController
|
class |
EOArchiveController
As a subclass of EOComponentController, EOArchiveController manages a user interface component (which be default is just an empty view to hold subcontroller components). |
class |
EOBoxController
|
class |
EODialogController
|
class |
EODocumentController
The EODocumentController class provides behavior for displaying and editing enterprise objects in a user interface. |
class |
EOEntityController
The EOEntityController class provides behavior for displaying enterprise objects in a user interface that can optionally be loaded from an interface file archive (a .nib file). |
class |
EOFrameController
|
class |
EOInspectorController
|
class |
EOInterfaceController
EOInterfaceController serves as a convenient base class for logic related to the interface of client-side applications. |
class |
EOMenuSwitchController
|
class |
EOModalDialogController
|
class |
EOProgrammaticSwitchController
|
class |
EOSimpleWindowController
|
class |
EOSplitController
|
class |
EOSwitchController
|
class |
EOTabSwitchController
|
class |
EOWindowController
EOWindowController extends EOComponentController for windows and dialogs. |
Methods in com.webobjects.eoapplication with parameters of type EOComponentController | |
protected void |
EOTabSwitchController.addBorderComponentForControllerToDisplayComponent(EOComponentController controller,
JComponent borderComponent,
JComponent displayComponent)
|
protected void |
EOTabSwitchController.removeBorderComponentForControllerFromDisplayComponent(EOComponentController controller,
JComponent borderComponent,
JComponent displayComponent,
int index)
|
protected abstract void |
EOSwitchController.addBorderComponentForControllerToDisplayComponent(EOComponentController controller,
JComponent borderComponent,
JComponent displayComponent)
|
protected void |
EOSwitchController.addComponentOfSubcontroller(EOComponentController controller)
|
protected boolean |
EOSwitchController.hideSubcontroller(EOComponentController controller)
|
protected abstract void |
EOSwitchController.removeBorderComponentForControllerFromDisplayComponent(EOComponentController controller,
JComponent borderComponent,
JComponent displayComponent,
int index)
|
protected void |
EOSwitchController.removeComponentOfSubcontroller(EOComponentController controller)
|
protected boolean |
EOSwitchController.showSubcontroller(EOComponentController controller)
|
void |
EOSwitchController.subcontrollerMinimumSizeDidChange(EOComponentController controller,
JComponent component,
Dimension updateMinimumSize)
|
void |
EOSwitchController.subcontrollerVisibilityDidChange(EOComponentController controller)
|
protected void |
EOSplitController.addComponentOfSubcontroller(EOComponentController controller)
|
protected void |
EOSplitController.removeComponentOfSubcontroller(EOComponentController controller)
|
void |
EOSplitController.subcontrollerMinimumSizeDidChange(EOComponentController controller,
JComponent component,
Dimension updateMinimumSize)
|
protected void |
EOSimpleWindowController.addComponentOfSubcontroller(EOComponentController controller)
|
void |
EOSimpleWindowController.subcontrollerMinimumSizeDidChange(EOComponentController controller,
JComponent component,
Dimension updateMinimumSize)
|
protected void |
EOProgrammaticSwitchController.addBorderComponentForControllerToDisplayComponent(EOComponentController controller,
JComponent borderComponent,
JComponent displayComponent)
|
protected void |
EOProgrammaticSwitchController.removeBorderComponentForControllerFromDisplayComponent(EOComponentController controller,
JComponent borderComponent,
JComponent displayComponent,
int index)
|
static void |
EOModalDialogController.runControllerInNewModalDialog(EOComponentController controller,
String windowTitle)
|
protected void |
EOMenuSwitchController.addBorderComponentForControllerToDisplayComponent(EOComponentController controller,
JComponent borderComponent,
JComponent displayComponent)
|
protected void |
EOMenuSwitchController.removeBorderComponentForControllerFromDisplayComponent(EOComponentController controller,
JComponent borderComponent,
JComponent displayComponent,
int index)
|
protected void |
EOInspectorController.addComponentOfSubcontroller(EOComponentController controller)
|
void |
EOInspectorController.subcontrollerMinimumSizeDidChange(EOComponentController controller,
JComponent component,
Dimension updateMinimumSize)
|
static void |
EOFrameController.runControllerInNewFrame(EOComponentController controller,
String windowTitle)
|
static void |
EODisplayUtilities.integrateTransientSubcontrollerComponentForController(EOComponentController controller,
EOComponentController subcontroller,
Dimension minimumSubcontrollerAreaSizeBeforeForgettingTransientController,
boolean layoutIsHorizontal)
|
static Dimension |
EODisplayUtilities.minimumComponentSizeWithIntegratedComponents(EOComponentController controller,
Dimension minimumComponentSizeWithoutIntegratedComponents,
Dimension minimumSubcontrollerAreaSize,
NSArray integratedComponentSizes,
boolean layoutIsHorizontal)
|
static Dimension |
EODisplayUtilities.minimumComponentSizeWithIntegratedComponents(EOComponentController controller,
Dimension minimumComponentSizeWithoutIntegratedComponents,
Dimension minimumSubcontrollerAreaSize,
NSArray integratedComponentSizes)
|
static void |
EODisplayUtilities.updateComponentInContainer(EOComponentController controllerProvidingSizeInformation,
JComponent updateComponent,
Dimension updateMinimumSize,
boolean prefersHorizontalResizing,
boolean prefersVerticalResizing,
JComponent container,
boolean layoutIsHorizontal)
|
static void |
EODisplayUtilities.updateComponentInController(EOComponentController controller,
JComponent updateComponent,
Dimension updateMinimumSize,
boolean prefersHorizontalResizing,
boolean prefersVerticalResizing,
boolean useSubcontrollerArea,
boolean layoutIsHorizontal)
|
static void |
EODialogController.runControllerInNewDialog(EOComponentController controller,
String windowTitle)
|
protected void |
EOComponentController.addComponentOfSubcontroller(EOComponentController controller)
Adds the integration component for the receiver's subcontroller, controller , to the user interface for the receiver. |
protected boolean |
EOComponentController.hideSubcontroller(EOComponentController controller)
This method is used to attempt to hide a subcontroller's user interface inside the component of the receiver. |
protected void |
EOComponentController.removeComponentOfSubcontroller(EOComponentController controller)
Removes the user interface for the receiver's subcontroller, controller , from the receiver's user interface and informs
controller that its integration component became invisible. |
protected boolean |
EOComponentController.showSubcontroller(EOComponentController controller)
This method is used to ensure that a subcontroller's user interface is shown inside the component of the receiver (which does not necessarily mean that it's visible on the screen). |
void |
EOComponentController.subcontrollerMinimumSizeDidChange(EOComponentController controller,
JComponent component,
Dimension updateMinimumSize)
Updates the receiver's user interface to accommodate a change to a subcontroller's minimum size. |
static EOApplication |
EOApplication.startApplication(NSDictionary parameters,
EOComponentController initialTopComponentController,
EOApplication.ApplicationSupport applicationSupport)
This method is the primary entry point for starting a Java Client application. |
Uses of EOComponentController in com.webobjects.eoapplication.client |
Subclasses of EOComponentController in com.webobjects.eoapplication.client | |
class |
EOAppletController
EOAppletControllers represent applets in the controller hierarchy. |
Uses of EOComponentController in com.webobjects.eogeneration |
Subclasses of EOComponentController in com.webobjects.eogeneration | |
class |
EOActionController
|
class |
EOAssociationController
|
class |
EOCheckBoxController
|
class |
EOComboBoxController
|
class |
EODefaultActionTrigger
|
class |
EODetailSelectionController
|
class |
EODisplayStatisticsController
|
class |
EOEditingController
|
class |
EOEnumerationController
|
class |
EOFormatValueController
|
class |
EOFormController
|
class |
EOImageViewController
|
class |
EOListController
|
class |
EOMultipleValuesEnumerationController
|
class |
EOOneValueEnumerationController
|
class |
EOQueryController
|
class |
EOQuickTimeViewController
|
class |
EORangeTextFieldController
|
class |
EORangeValueController
|
class |
EORangeWidgetController
|
class |
EOStaticIconController
|
class |
EOStaticLabelController
|
class |
EOStaticTextFieldController
|
class |
EOTableColumnController
|
class |
EOTableController
|
class |
EOTextAreaController
|
class |
EOTextFieldController
|
class |
EOTitlesController
|
class |
EOTreeController
|
class |
EOValueAndURLController
|
class |
EOValueController
|
class |
EOWidgetController
|
|
Last updated Thu Oct 21 15:04:16 PDT 2004. | ||||||||||
PREV NEXT | FRAMES NO FRAMES |