org.netbeans.modules.compapp.projects.common.ui |
|
Java Source File Name | Type | Comment |
ImplicitNamespaceChildren.java | Class | Represents the collection of files belonging to a common namespace. |
ImplicitReferenceCreator.java | Class | This class extends the NamespaceReferenceCreator to provide the required concrete
implementation required to select the namespace nodes belongs to wsdl or xsd files
across projects to use in the implicit namespace catalog support.
Users can use this class to show the gui in a dialog from which they can select the
namespaces that they will be using in their xml documents and populate the implicit
namespace catalog with the selected namespaces.
Project prj = ...// get the project reference
ImplicitReferenceCreator refCreator =
ImplicitReferenceCreator.newInstance(prj);
// show the selection dialog
Object result =
ImplicitReferenceCreator.showSelectionDialog(refCreator, "Select Namespaces");
....
if ( result == DialogDescriptor.OK_OPTION) {
// populate implicit catalog support with the selected namespaces.
refCreator.addSelectedNamespacesToCatalog(prj);
}
// OR.
|
ImplicitReferenceDataNode.java | Class | This class represents the nodes in the treeview of the wsdl or xsd files in
multiple projects known to this project in a namespace selection gui. |
ImplicitReferenceDecorator.java | Class | Node decorator for the treeview that shows the wsdl and xsd files together. |
NamespaceReferenceCreator.java | Class | Base class for external reference creators. |