站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 5.0.0

DefaultFactory (NetBeans Java Hierarchy API) - NetBeans API Javadoc 5.0.0

 

org.openide.src.nodes
Class DefaultFactory

java.lang.Object
  extended byorg.openide.src.nodes.DefaultFactory
All Implemented Interfaces:
ElementNodeFactory, IconStrings

public class DefaultFactory
extends Object
implements ElementNodeFactory, IconStrings

The default implementation of the hierarchy nodes factory. Uses the standard node implementations in this package.


Field Summary
static String CLASS
           
static String CONSTRUCTOR_PACKAGE
           
static String CONSTRUCTOR_PRIVATE
           
static String CONSTRUCTOR_PROTECTED
           
static String CONSTRUCTOR_PUBLIC
           
static String CONSTRUCTORS_CATEGORY
           
static String ERROR
           
static String FIELD_PACKAGE
           
static String FIELD_PRIVATE
           
static String FIELD_PROTECTED
           
static String FIELD_PUBLIC
           
static String FIELD_ST_PACKAGE
           
static String FIELD_ST_PRIVATE
           
static String FIELD_ST_PROTECTED
           
static String FIELD_ST_PUBLIC
           
static String FIELDS_CATEGORY
           
static String INITIALIZER
           
static String INITIALIZER_ST
           
static String INTERFACE
           
static String METHOD_PACKAGE
           
static String METHOD_PRIVATE
           
static String METHOD_PROTECTED
           
static String METHOD_PUBLIC
           
static String METHOD_ST_PACKAGE
           
static String METHOD_ST_PRIVATE
           
static String METHOD_ST_PROTECTED
           
static String METHOD_ST_PUBLIC
           
static String METHODS_CATEGORY
           
static DefaultFactory READ_ONLY
          Default instance of the factory with read-only properties.
static DefaultFactory READ_WRITE
          Default instance of the factory with read-write properties.
static String WAIT
           
 
Constructor Summary
DefaultFactory(boolean writeable)
          Create a new factory.
 
Method Summary
protected  Children createClassChildren(ClassElement element)
          Create children for a class node.
protected  Children createClassChildren(ClassElement element, ElementNodeFactory factory)
          Create children for a class node, with specified factory.
 Node createClassNode(ClassElement element)
          Make a node representing a class.
 Node createConstructorNode(ConstructorElement element)
          Make a node representing a constructor.
 Node createErrorNode()
          Make a node indicating that there was an error creating the element children.
 Node createFieldNode(FieldElement element)
          Make a node representing a field.
 Node createInitializerNode(InitializerElement element)
          Make a node representing an initializer.
 Node createMethodNode(MethodElement element)
          Make a node representing a method.
 Node createWaitNode()
          Make a node indicating that the creation of children is still under way.
 boolean isWriteable()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

READ_WRITE

public static final DefaultFactory READ_WRITE
Default instance of the factory with read-write properties.


READ_ONLY

public static final DefaultFactory READ_ONLY
Default instance of the factory with read-only properties.


FIELD_PUBLIC

public static final String FIELD_PUBLIC
See Also:
Constant Field Values

FIELD_PROTECTED

public static final String FIELD_PROTECTED
See Also:
Constant Field Values

FIELD_PRIVATE

public static final String FIELD_PRIVATE
See Also:
Constant Field Values

FIELD_PACKAGE

public static final String FIELD_PACKAGE
See Also:
Constant Field Values

FIELD_ST_PUBLIC

public static final String FIELD_ST_PUBLIC
See Also:
Constant Field Values

FIELD_ST_PROTECTED

public static final String FIELD_ST_PROTECTED
See Also:
Constant Field Values

FIELD_ST_PRIVATE

public static final String FIELD_ST_PRIVATE
See Also:
Constant Field Values

FIELD_ST_PACKAGE

public static final String FIELD_ST_PACKAGE
See Also:
Constant Field Values

CONSTRUCTOR_PUBLIC

public static final String CONSTRUCTOR_PUBLIC
See Also:
Constant Field Values

CONSTRUCTOR_PROTECTED

public static final String CONSTRUCTOR_PROTECTED
See Also:
Constant Field Values

CONSTRUCTOR_PRIVATE

public static final String CONSTRUCTOR_PRIVATE
See Also:
Constant Field Values

CONSTRUCTOR_PACKAGE

public static final String CONSTRUCTOR_PACKAGE
See Also:
Constant Field Values

METHOD_PUBLIC

public static final String METHOD_PUBLIC
See Also:
Constant Field Values

METHOD_PROTECTED

public static final String METHOD_PROTECTED
See Also:
Constant Field Values

METHOD_PRIVATE

public static final String METHOD_PRIVATE
See Also:
Constant Field Values

METHOD_PACKAGE

public static final String METHOD_PACKAGE
See Also:
Constant Field Values

METHOD_ST_PUBLIC

public static final String METHOD_ST_PUBLIC
See Also:
Constant Field Values

METHOD_ST_PROTECTED

public static final String METHOD_ST_PROTECTED
See Also:
Constant Field Values

METHOD_ST_PRIVATE

public static final String METHOD_ST_PRIVATE
See Also:
Constant Field Values

METHOD_ST_PACKAGE

public static final String METHOD_ST_PACKAGE
See Also:
Constant Field Values

INITIALIZER

public static final String INITIALIZER
See Also:
Constant Field Values

INITIALIZER_ST

public static final String INITIALIZER_ST
See Also:
Constant Field Values

CLASS

public static final String CLASS
See Also:
Constant Field Values

INTERFACE

public static final String INTERFACE
See Also:
Constant Field Values

WAIT

public static final String WAIT
See Also:
Constant Field Values

ERROR

public static final String ERROR
See Also:
Constant Field Values

FIELDS_CATEGORY

public static final String FIELDS_CATEGORY
See Also:
Constant Field Values

CONSTRUCTORS_CATEGORY

public static final String CONSTRUCTORS_CATEGORY
See Also:
Constant Field Values

METHODS_CATEGORY

public static final String METHODS_CATEGORY
See Also:
Constant Field Values
Constructor Detail

DefaultFactory

public DefaultFactory(boolean writeable)
Create a new factory.

Parameters:
writeable - true if the produced nodes should have writable properties
See Also:
ElementNode.writeable
Method Detail

isWriteable

public boolean isWriteable()

createMethodNode

public Node createMethodNode(MethodElement element)
Description copied from interface: ElementNodeFactory
Make a node representing a method.

Specified by:
createMethodNode in interface ElementNodeFactory
Parameters:
element - the method
Returns:
a method node instance

createConstructorNode

public Node createConstructorNode(ConstructorElement element)
Description copied from interface: ElementNodeFactory
Make a node representing a constructor.

Specified by:
createConstructorNode in interface ElementNodeFactory
Parameters:
element - the constructor
Returns:
a constructor node instance

createFieldNode

public Node createFieldNode(FieldElement element)
Description copied from interface: ElementNodeFactory
Make a node representing a field.

Specified by:
createFieldNode in interface ElementNodeFactory
Parameters:
element - the field
Returns:
a field node instance

createInitializerNode

public Node createInitializerNode(InitializerElement element)
Description copied from interface: ElementNodeFactory
Make a node representing an initializer.

Specified by:
createInitializerNode in interface ElementNodeFactory
Parameters:
element - the initializer
Returns:
an initializer node instance

createClassNode

public Node createClassNode(ClassElement element)
Description copied from interface: ElementNodeFactory
Make a node representing a class.

Specified by:
createClassNode in interface ElementNodeFactory
Parameters:
element - the class
Returns:
a class node instance

createClassChildren

protected Children createClassChildren(ClassElement element)
Create children for a class node. Could be subclassed to customize, e.g., the ordering of children. The default implementation used ClassChildren.

Parameters:
element - a class element
Returns:
children for the class element

createClassChildren

protected final Children createClassChildren(ClassElement element,
                                             ElementNodeFactory factory)
Create children for a class node, with specified factory. The default implementation used ClassChildren.

Parameters:
element - a class element
factory - the factory which will be used to create children
Returns:
children for the class element

createWaitNode

public Node createWaitNode()
Description copied from interface: ElementNodeFactory
Make a node indicating that the creation of children is still under way. It should be used when the process is slow.

Specified by:
createWaitNode in interface ElementNodeFactory
Returns:
a wait node

createErrorNode

public Node createErrorNode()
Description copied from interface: ElementNodeFactory
Make a node indicating that there was an error creating the element children.

Specified by:
createErrorNode in interface ElementNodeFactory
Returns:
the error node

 

Built on May 3 2007.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.