Uses of Interface
net.sf.jguiraffe.gui.builder.window.Window
-
Packages that use Window Package Description net.sf.jguiraffe.gui.app In this package the main application class can be found.net.sf.jguiraffe.gui.builder The main package of the builder.net.sf.jguiraffe.gui.builder.impl Here default implementations of theBuilderinterfaces can be found.net.sf.jguiraffe.gui.builder.utils Theutilspackage contains some classes and interfaces providing some special functionality that cannot be associated with other parts of the builder framework.net.sf.jguiraffe.gui.builder.window The interfaces and classes in this package support the creation of several types of windows in builder scripts.net.sf.jguiraffe.gui.builder.window.ctrl This package contains classes and interfaces for the implementation of form controllers.net.sf.jguiraffe.gui.builder.window.tags A package with tag handler classes for creating window components. -
-
Uses of Window in net.sf.jguiraffe.gui.app
Methods in net.sf.jguiraffe.gui.app that return Window Modifier and Type Method Description WindowApplicationContext. getMainWindow()Returns the application's main window.WindowApplicationContextImpl. getMainWindow()Returns the application's main window.WindowApplicationBuilderData. getParentWindow()Returns the parent window.Methods in net.sf.jguiraffe.gui.app with parameters of type Window Modifier and Type Method Description protected voidApplication. initMainWindow(Window window, org.apache.commons.configuration.Configuration config)Initializes the application's main window object.voidApplicationContext. setMainWindow(Window mainWindow)Allows to set the application's main window.voidApplicationContextImpl. setMainWindow(Window mainWindow)Allows to set the application's main window.voidApplicationBuilderData. setParentWindow(Window parentWindow)Sets the parent window.protected voidApplication. showMainWindow(Window window)Shows the application's main window. -
Uses of Window in net.sf.jguiraffe.gui.builder
Methods in net.sf.jguiraffe.gui.builder that return Window Modifier and Type Method Description WindowBuilder. buildWindow(Locator script, BuilderData data)A convenience method for building windows like top-level frames or dialogs.WindowBuilderData. getParentWindow()Returns the parent window. -
Uses of Window in net.sf.jguiraffe.gui.builder.impl
Methods in net.sf.jguiraffe.gui.builder.impl that return Window Modifier and Type Method Description WindowJellyBuilder. buildWindow(Locator script, BuilderData data)A convenience method for building windows. -
Uses of Window in net.sf.jguiraffe.gui.builder.utils
Methods in net.sf.jguiraffe.gui.builder.utils with parameters of type Window Modifier and Type Method Description intMessageOutput. show(Window parent, Object message, String title, int messageType, int buttonType)Displays a message box based on the given options.intNullMessageOutput. show(Window parent, Object message, String title, int messageType, int buttonType)Outputs the specified message. -
Uses of Window in net.sf.jguiraffe.gui.builder.window
Methods in net.sf.jguiraffe.gui.builder.window that return Window Modifier and Type Method Description WindowWindowManager. createDialog(WindowBuilderData builderData, WindowData data, boolean modal, Window wnd)Creates a modal or non modal dialog.WindowWindowManagerWrapper. createDialog(WindowBuilderData builderData, WindowData data, boolean modal, Window wnd)Creates a modal or non modal dialog.WindowWindowManager. createFrame(WindowBuilderData builderData, WindowData data, Window wnd)Creates a frame window (a main frame).WindowWindowManagerWrapper. createFrame(WindowBuilderData builderData, WindowData data, Window wnd)Creates a frame window (a main frame).WindowWindowManager. createInternalFrame(WindowBuilderData builderData, WindowData data, Window wnd)Creates an internal frame window.WindowWindowManagerWrapper. createInternalFrame(WindowBuilderData builderData, WindowData data, Window wnd)Creates an internal frame window.WindowWindow. getParentWindow()Returns the (platform independent abstraction of) window's parent window.WindowWindowBuilderData. getParentWindow()Returns the parent window of the new window.WindowWindowBuilderData. getResultWindow()Returns the result window of the builder process.WindowWindowBuilderData. getWindow(String name)Returns the result window with the given name.static WindowWindowUtils. toWindow(Object wnd)Tries to cast the specified object into aWindow.static WindowWindowUtils. toWindowEx(Object wnd)Tries to cast the specified object into aWindow.static WindowWindowUtils. windowFromEvent(WindowEvent event)Tries to cast the source window from the specified event object into aWindowobject.static WindowWindowUtils. windowFromEventEx(WindowEvent event)Tries to cast the source window from the specified event object into aWindowobject.Methods in net.sf.jguiraffe.gui.builder.window with parameters of type Window Modifier and Type Method Description booleanInvariantWindowClosingStrategy. canClose(Window window)Checks if the window can be closed.booleanWindowClosingStrategy. canClose(Window window)Checks if the window can be closed.WindowWindowManager. createDialog(WindowBuilderData builderData, WindowData data, boolean modal, Window wnd)Creates a modal or non modal dialog.WindowWindowManagerWrapper. createDialog(WindowBuilderData builderData, WindowData data, boolean modal, Window wnd)Creates a modal or non modal dialog.WindowWindowManager. createFrame(WindowBuilderData builderData, WindowData data, Window wnd)Creates a frame window (a main frame).WindowWindowManagerWrapper. createFrame(WindowBuilderData builderData, WindowData data, Window wnd)Creates a frame window (a main frame).WindowWindowManager. createInternalFrame(WindowBuilderData builderData, WindowData data, Window wnd)Creates an internal frame window.WindowWindowManagerWrapper. createInternalFrame(WindowBuilderData builderData, WindowData data, Window wnd)Creates an internal frame window.static ObjectWindowUtils. getPlatformWindow(Window window)Returns the platform (or GUI library) specific window that is represented by the passed inWindowobject.voidWindowBuilderData. putWindow(String name, Window window)Adds a result window to this data object.voidWindowBuilderData. setParentWindow(Window parentWindow)Sets the parent window.voidWindowBuilderData. setResultWindow(Window resultWindow)Sets the result window.Constructors in net.sf.jguiraffe.gui.builder.window with parameters of type Window Constructor Description WindowEvent(Object source, Window sourceWindow, WindowEvent.Type type)Creates an instance ofWindowEventand sets the properties. -
Uses of Window in net.sf.jguiraffe.gui.builder.window.ctrl
Methods in net.sf.jguiraffe.gui.builder.window.ctrl that return Window Modifier and Type Method Description WindowFormController. getWindow()Returns the associated window. -
Uses of Window in net.sf.jguiraffe.gui.builder.window.tags
Methods in net.sf.jguiraffe.gui.builder.window.tags that return Window Modifier and Type Method Description protected WindowDialogTag. createWindow(WindowManager manager, WindowBuilderData data)Creates the dialog window using the passed in window manager.protected WindowFrameTag. createWindow(WindowManager manager, WindowBuilderData data)Creates the frame window.protected WindowInternalFrameTag. createWindow(WindowManager manager, WindowBuilderData data)Creates the internal frame window using the passed in window manager.protected abstract WindowWindowBaseTag. createWindow(WindowManager manager, WindowBuilderData data)Creates the window represented by the given data object using the current window manager.protected WindowWindowControllerTag. fetchWindow()Obtains the window for this controller.WindowWindowBaseTag. getWindow()Returns the window created by this tag.protected WindowDialogTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)Initializes the dialog window.protected WindowFrameTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)Initializes the frame window.protected WindowInternalFrameTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)Initializes an internal frame window.protected abstract WindowWindowBaseTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)Initializes the window that was created by thecreateWindow()method.Methods in net.sf.jguiraffe.gui.builder.window.tags with parameters of type Window Modifier and Type Method Description protected WindowDialogTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)Initializes the dialog window.protected WindowFrameTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)Initializes the frame window.protected WindowInternalFrameTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)Initializes an internal frame window.protected abstract WindowWindowBaseTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)Initializes the window that was created by thecreateWindow()method.protected voidWindowControllerTag. registerController(Object controller, Window window)Checks the interfaces implemented by the controller bean and performs necessary registrations.
-