net.jini.lookup.ui.factory
Interface JWindowFactory

All Superinterfaces:
Serializable

public interface JWindowFactory
extends Serializable

UI factory for a Swing JWindow.

If the UI generated by the method declared in this interface implements javax.accessibility.Accessible and supports the Java Accessibility API, an AccessibleUI attribute should be placed in the UIDescriptor's attributes set.

Author:
Bill Venners

Field Summary
static String TOOLKIT
          Convenience constant to use in the toolkit field of UIDescriptors that contain a JWindowFactory.
static String TYPE_NAME
          Convenience constant to use in the UIFactoryTypes set in the attributes set of UIDescriptors that contain a JWindowFactory.
 
Method Summary
 JWindow getJWindow(Object roleObject)
          Returns a JWindow with no specified owner.
 JWindow getJWindow(Object roleObject, Frame owner)
          Returns a JWindow with specified owner Frame.
 JWindow getJWindow(Object roleObject, Window owner)
          Returns a JWindow with specified owner Window.
 

Field Detail

TOOLKIT

static final String TOOLKIT
Convenience constant to use in the toolkit field of UIDescriptors that contain a JWindowFactory. The value of this constant is "javax.swing".

See Also:
Constant Field Values

TYPE_NAME

static final String TYPE_NAME
Convenience constant to use in the UIFactoryTypes set in the attributes set of UIDescriptors that contain a JWindowFactory. The value of this constant is "net.jini.lookup.ui.factory.JWindowFactory".

See Also:
Constant Field Values
Method Detail

getJWindow

JWindow getJWindow(Object roleObject)
Returns a JWindow with no specified owner.

Parameters:
roleObject - an object defined by the semantics of the UI role interface implemented by the returned UI object. (UI role is indicated in the role field of UIDescriptors.)
Returns:
a JWindow UI

getJWindow

JWindow getJWindow(Object roleObject,
                   Window owner)
Returns a JWindow with specified owner Window.

Parameters:
roleObject - an object defined by the semantics of the UI role interface implemented by the returned UI object. (UI role is indicated in the role field of UIDescriptors.)
owner - the Window to act as owner of the returned JWindow
Returns:
a JWindow UI

getJWindow

JWindow getJWindow(Object roleObject,
                   Frame owner)
Returns a JWindow with specified owner Frame.

Parameters:
roleObject - an object defined by the semantics of the UI role interface implemented by the returned UI object. (UI role is indicated in the role field of UIDescriptors.)
owner - the Frame to act as owner of the returned JWindow
Returns:
a JWindow UI


Copyright 2007-2010, multiple authors.
Licensed under the Apache License, Version 2.0, see the NOTICE file for attributions.