Uses of Interface
net.sf.jguiraffe.gui.builder.window.WindowManager
-
Packages that use WindowManager Package Description net.sf.jguiraffe.gui.builder.impl Here default implementations of theBuilder
interfaces can be found.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.tags A package with tag handler classes for creating window components. -
-
Uses of WindowManager in net.sf.jguiraffe.gui.builder.impl
Methods in net.sf.jguiraffe.gui.builder.impl that return WindowManager Modifier and Type Method Description WindowManager
JellyBuilder. getWindowManager()
Returns the window manager used by this builder.Methods in net.sf.jguiraffe.gui.builder.impl with parameters of type WindowManager Modifier and Type Method Description void
JellyBuilder. setWindowManager(WindowManager windowManager)
Sets the window manager to be used by this builder. -
Uses of WindowManager in net.sf.jguiraffe.gui.builder.window
Classes in net.sf.jguiraffe.gui.builder.window that implement WindowManager Modifier and Type Class Description class
WindowManagerWrapper
A base class for wrapper implementations of theWindowManager
interface.Methods in net.sf.jguiraffe.gui.builder.window that return WindowManager Modifier and Type Method Description WindowManager
WindowBuilderData. getWindowManager()
Returns the window manager.WindowManager
WindowManagerWrapper. getWrappedWindowManager()
Returns a reference to the wrappedWindowManager
.Methods in net.sf.jguiraffe.gui.builder.window with parameters of type WindowManager Modifier and Type Method Description void
WindowBuilderData. setWindowManager(WindowManager windowManager)
Sets the window manager.Constructors in net.sf.jguiraffe.gui.builder.window with parameters of type WindowManager Constructor Description WindowManagerWrapper(WindowManager wrapped)
Creates a new instance ofWindowManagerWrapper
and initializes it with the wrappedWindowManager
. -
Uses of WindowManager in net.sf.jguiraffe.gui.builder.window.tags
Methods in net.sf.jguiraffe.gui.builder.window.tags with parameters of type WindowManager Modifier and Type Method Description protected Window
DialogTag. createWindow(WindowManager manager, WindowBuilderData data)
Creates the dialog window using the passed in window manager.protected Window
FrameTag. createWindow(WindowManager manager, WindowBuilderData data)
Creates the frame window.protected Window
InternalFrameTag. createWindow(WindowManager manager, WindowBuilderData data)
Creates the internal frame window using the passed in window manager.protected abstract Window
WindowBaseTag. createWindow(WindowManager manager, WindowBuilderData data)
Creates the window represented by the given data object using the current window manager.protected Window
DialogTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)
Initializes the dialog window.protected Window
FrameTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)
Initializes the frame window.protected Window
InternalFrameTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)
Initializes an internal frame window.protected abstract Window
WindowBaseTag. initWindow(WindowManager manager, WindowBuilderData data, Window wnd)
Initializes the window that was created by thecreateWindow()
method.
-