Package Name | Comment |
apichanges | |
basic | |
bugs | |
framework | |
org.myorg.feedreader | |
org.netbeans.api.java.classpath |
Representation of Java classpaths, and the ability to find the classpath needed
for a particular purpose.
Using the Classpath API you can look up the classpath used for a certain
purpose (such as compilation or running) on a certain file.
Contents
ClassPath API
At runtime, there's often only a single Classpath available through the application
classloader. The application is often developed against a set of APIs, with some
implementation provided at runtime. For example, if using JDBC, the application is
compiled against JDBC API only and the proper driver is added to the runtime classpath.
To avoid unintentional dependencies on implementation, the implementation classes
are often stripped off the compilation path. Another case is debugging with special
implementation libraries that - for example - perform special sanity checks or
logging. Again, the classpath is different from those used during build or
application's execution.
Since the IDE supports the whole development cycle, it needs to provide different
classpaths for each of the purposes mentioned, and maybe for others, too.
See {@link java.lang.ClassLoader}.
The ClassPath API uses concept similar to
Services to categorize ClassPaths. Instead of the class, a string token
is used to name a service type.
Various types such as {@link org.netbeans.api.java.classpath.ClassPath#COMPILE}
are defined.
In addition to different services, the API also permits different files to have
different classpaths configured for them. In addition to the desired
classpath type, clients are required to pass in a FileObject of the user file, which
is the "starting point" for the classpath search.
To obtain a ClassPath instance for the given FileObject and intended usage, you
want to call {@link org.netbeans.api.java.classpath.ClassPath#getClassPath}
as in this example for getting compilation classpath:
The classpath is formed from one or more roots. JRE itself supports
at least two types of of them: a root can be either a directory or an archive
(.jar or .zip file). The definition of the classpath cannot
maintain integrity with the root folders or archives. If one of them is renamed,
deleted or otherwise changed, its entry in the classpath becomes invalid and
does not contribute to the contents of the classpath. Note that the entry cannot
be removed automagically, since an archive can disappear (for example) because of
the compilation products in a subproject.
Note that regardless of where the classpath entry is an archive, or a folder,
the root returned for it will be always a folder. For archive files,
it will be the root folder of the archive filesystem.
For most purposes, working with only those roots which are valid, is sufficient enough.
The error condition can be detected when a required resource is missing, for example.
For some tasks checking for validity of individual classpath entries may be appropriate,
the build process being a notable example. For others, like searches or parsing,
such behaviour is hihgly undesirable.
If you don't need to notify the user that the definition of classpath is
not correct (there are other ways or another, more appropriate, time to notify the user),
you can use
{@link org.netbeans.api.java.classpath.ClassPath#getRoots}
to find out what folders are the roots:
Clients who need to find out whether the environment is set up well, may work
more thoroughly using
{@link org.netbeans.api.java.classpath.ClassPath.Entry} objects:
The resource name is essentially a
file name, relative to the root of classpath. If the classpath has more roots (it's
a classpath forest rather than a single tree),
they are combined and merged together to give one "logical" tree. The merge operation
has one subtle property, resource hiding: when there are several resources of
the same name in the classpath forest, the order of the roots that define the
classpath matters and the only the first resource encountered (in that order)
is visible for the ClassLoader.
Often a FileObject is viewed as a resource to the application being developed.
It's the most used view for Java sources, as they are required to appear in
an appropriate folder in the source tree, but for other objects as well. For example,
the IDE support for images need to record the resource name of the image
so that it can be loaded at runtime using
{@link java.lang.ClassLoader#getResourceAsStream}.
If you need to obtain a name for FileObject,
which is relative to the classpath, you first have to think about for which
service do you need it. For resource bundles, for example, it will be mostly the execution
service. Then you will get the appropriate {@link org.netbeans.api.java.classpath.ClassPath}
instance and ask it to compute the name for you:
To check whether a resource (FileObject ) is visible or not to the service,
you may want to call {@link org.netbeans.api.java.classpath.ClassPath#isResourceVisible}.
You may want to do just the opposite, to get a FileObject for a resource name
you have. Since there may be more resources of that name, the API supports
{@link org.netbeans.api.java.classpath.ClassPath#findResource} to get the visible one,
or {@link org.netbeans.api.java.classpath.ClassPath#findAllResources} to get
a collection of all resources matching the name.
The ClassPath interface supports listening to either root folder set changes
or entry set changes. Changes in root folder set can be observed by
property change listeners, they are reported as additions,
deletions or changes to the order of roots. For example, to watch out for new compile-time
dependencies, you may do:
You may also listen entries property. Note that the root
folder set may change even though the entry set did not change,
as a result of some entry becoming (in)valid.
The now-deprecated way how to
obtain a resource name for a file object was to call
{@link org.openide.filesystems.FileObject#getPackageNameExt}.
But the getPackageNameExt() method gives a name
of the file within the FileSystem rather than its relative path
from some classpath root point. Therefore it is no longer recommended to use the
{@link org.openide.filesystems Filesystems API}
to obtain classpaths.
As the {@link org.openide.filesystems.Repository}
searches through FileSystems without regard to the intended usage for individual services,
{@link org.openide.filesystems.Repository#findResource} and
{@link org.openide.filesystems.Repository#findAllResources}
should not be used at all.
{@link org.netbeans.api.java.classpath.GlobalPathRegistry} may be used to find certain kinds of files that are
available among open projects in the GUI, but this should be used only as a last
resort if there is no other possible source of information about where a file
might be located according to specific classpaths.
The usage of the class
{@link org.openide.filesystems.FileSystemCapability}
is deprecated;
you should use methods of
{@link org.netbeans.api.java.classpath.ClassPath}
instead of that.
Old method | New method |
{@link org.openide.filesystems.FileObject#getPackageName} and {@link org.openide.filesystems.FileObject#getPackageName} |
{@link org.netbeans.api.java.classpath.ClassPath#getResourceName} |
{@link org.openide.filesystems.FileSystemCapability#findResource} |
{@link org.netbeans.api.java.classpath.ClassPath#findResource} |
{@link org.openide.filesystems.FileSystemCapability#findAllResources} |
{@link org.netbeans.api.java.classpath.ClassPath#findAllResources} |
{@link org.openide.filesystems.FileSystemCapability#fileSystems} |
{@link org.netbeans.api.java.classpath.ClassPath#getRoots} |
{@link org.openide.filesystems.Repository#findResource} |
{@link org.netbeans.api.java.classpath.GlobalPathRegistry#findResource} |
{@link org.openide.filesystems.Repository#findAllResources} |
{@link org.netbeans.api.java.classpath.GlobalPathRegistry#getSourceRoots} |
|
org.netbeans.api.java.queries |
Java-specific queries.
{@link org.netbeans.api.java.queries.SourceForBinaryQuery} lets you find the
sources used to compile some Java classfiles you know about.
|
org.netbeans.api.progress |
This API allows to visualize tracking for progress of long lasting tasks.
The usual usecase goes like this:
ProgressHandle handle = ProgressHandleFactory.createHandle("My custom task");
...
// we have 100 workunits
// at this point the task appears in status bar.
handle.start(100);
...
handle.progress(10);
...
handle.progress(50);
...
// at this point the task is finished and removed from status bar
handle.finish();
There are several options on how detailed visualization you want.
- task with unknown duration or with hard to show progress steps.
- task with known scaled steps
- task with known steps and also with a time estimate for completion
All these usecases are supported by methods of {@link org.netbeans.api.progress.ProgressHandle} class. Additionally
it's possible to include textual information about current progress.
If the task allows to be cancelled by the user, then you have to implement
{@link org.openide.util.Cancellable} interface and pass it to the {@link org.netbeans.api.progress.ProgressHandleFactory}
when creating the handle.
|
org.netbeans.api.progress.aggregate |
Advanced progress manipulation, allowing to construct a single progress indication bar
from multiple, possibly independent sources.
Note: The APIs in the package resemble the APIs from the main package but are separate.
There are the same visualization options as with the regular progress indication, with additional
customization options provided.
- There are multiple, possibly independent sources of task's progress.
- These progress sources (contributors) can be added even during the task's run.
- The infrastructure assures that the progressbar never steps back but recalculates the
remaining space among the running contributors.
- It's possible to monitor the progress from a central place.
|
org.netbeans.api.visual.action |
This package contains ActionFactory class which is factory of all built-in widget-actions provided by the library.
Widget-actions are defined by WidgetAction interface. Also there is an adapter (WidgetAction.Adapter )
and special lock-aware version (WidgetAction.LockedAdapter ).
Factories requires various input parameter:
*Provider interfaces are used for providing a action logic or for notifying about state of actions.
*Decorator interfaces are used for supplying the look of visual element e.g. the style of align-with guide-lines.
*Strategy interfaces are used for filtering data e.g. snap-to-grid movement strategy.
*Editor interfaces are used for providing particular in-place editors.
Built-in implementation of those interfaces can be found in ActionFactory class too.
|
org.netbeans.api.visual.anchor |
This package contains Anchor interface which is used by ConnectionWidget for defining its source and target point.
Built-in anchor implementations can be obtained using AnchorFactory class.
The package also contains AnchorShape interface which is used for defining a shape of a ConnectionWidget .
Built-in anchor shape implementations can be obtained using AnchorShapeFactory class or using static field:
AnchorShape.NONE , AnchorShape.TRIANGLE_HOLLOW , AnchorShape.TRIANGLE_FILLED and AnchorShape.TRIANGLE_OUT .
|
org.netbeans.api.visual.animator |
This package contains SceneAnimator classes which is used for controlling animations on a scene.
Also you can supply your own animator by implementing Animator class.
Also you can listen on each animator using AnimatorListener interface.
|
org.netbeans.api.visual.border |
This package contains Border interface which is used for supplying a border graphics for a widget.
Built-in border implementations can be created using BorderFactory class.
|
org.netbeans.api.visual.graph |
This package contains built-in graph-oriented models. They are based on a ObjectScene class.
The GraphScene provides a model with nodes and edges.
An edge can have a source and target node specified.
The GraphPinScene providers a model with nodes, pins and edges.
A pin is always assigned to a node and an edge can have a source and target pin specified.
|
org.netbeans.api.visual.graph.layout |
This package contains built-in graph-oriented layout algorithms.
This layout is not related with widget-oriented layout in org.netbeans.api.visual.layout package.
There is GraphLayout class which is used for defining a graph layout.
The layout implementation does not have be based this class but it would make its integration with the rest of the library easier.
|
org.netbeans.api.visual.laf |
This package contains LookFeel class with style definition for colors and borders.
Default style can be created by LookFeel.createDefaultLookFeel method.
|
org.netbeans.api.visual.layout |
This package contains Layout interface which defines a widget-layout. Widget-layout is similar to Swing-layout.
It defines how children widgets should layed out.
This layout is not related with graph-oriented layout in org.netbeans.api.visual.graph.layout package.
|
org.netbeans.api.visual.model |
This package contains ObjectScene class which is a scene with ability to register model-objects with widgets on the scene.
Also it holds information about selected, hightlighted, focused and hovered objects. Everything is object-oriented (not widget-oriented).
|
org.netbeans.api.visual.router |
This package contains Router interface which defines a router for ConnectionWidget .
The router has to resolve list of control points for a connection. Then ConnectionWidget uses it as a path for rendering, hit-checking, ...
Built-in router implementations can be created using RouterFactory class.
|
org.netbeans.api.visual.vmd |
This package contains a VMD visualization style. The VMD stands for Visual Mobile Designer and is targeted to be used
for graph-oriented model based on GraphPinScene. The VMD package providers an integrated set of widgets.
All classes can be used together or standalone except that the VMDNodeWidget expect to have VMDPinWidget added a special way using
VMDNodeWidget.attachPinWidget method.
|
org.netbeans.api.visual.widget |
This package contains Widget class. Widget is a small reusable piece of a scene. This defines appearance.
Widgets can also has widget-actions assigned. This defines behaviour.
The package contains a set of low-level widgets. E.g.:
Widget - base/abstract widget - similar to JComponent in Swing
Scene - widget which represents and holds whole scene - similar to JFrame in Swing
LayerWidget - special transparent widget used for overlays - similar JGlassPane in Swing
ConnectionWidget - specific widget which represents path defined by control-points
LabelWidget - widget with a single-line text - similar to simple version of JLabel in Swing
ImageWidget - widget with an image - similar to simple version of JLabel in Swing
ScrollWidget - widget with scrollable viewport - similar to simple version of JScrollPane in Swing
SwingScrollWidget - widget with scroolable viewport which is using JScrollBars
ComponentWidget - widget used for integration of Swing component into a scene
|
org.netbeans.api.visual.widget.general |
This package contains general high-level widgets.
|
org.netbeans.api.xml.cookies |
XML data objects polymorphism cookies.
XML Tools Cookies API
XML tools API supports XML polymorfic nature by defining a set of XML related
cookies.
This approach allows to define actual data object independent actions etc.
No UI Interaction Pattern
Most XML cookie interfaces use no UI interaction pattern.
It means that a cookie specification states that its implementation cannot
change UI state. UI is responsibity of cookie client that is
supported by the cookie with provided notification interface.
Plans
Once a MDR will be ready we can add model access cookies if not covered by
MDR integration module.
|
org.netbeans.api.xml.parsers |
XML Tools Parsers API
XML processors API unification, OpenIDE bridging and utility classes.
XML Tools Parser APIs
Contrains simple standard XML processors API (DOM, SAX, TrAX) extensions
(DTDParser) and classes for their APIs unification (ProcessorNotifier) and
integration with OpenIDE (DocumentInputSource).
|
org.netbeans.api.xml.services |
XML Tools Service API
XML Service interface definitions.
XML Tools Service APIs
This package defines XML service interfaces. A service instance can be located
in global IDE {@link org.openide.util.Lookup Lookup}.
|
org.netbeans.examples.modules.action | |
org.netbeans.examples.modules.lib | |
org.netbeans.modules.apisupport.ant | |
org.netbeans.modules.apisupport.feedreader | |
org.netbeans.modules.apisupport.jnlplauncher | |
org.netbeans.modules.apisupport.paintapp | |
org.netbeans.modules.apisupport.project | |
org.netbeans.modules.apisupport.project.jnlp | |
org.netbeans.modules.apisupport.project.layers | |
org.netbeans.modules.apisupport.project.metainf | |
org.netbeans.modules.apisupport.project.queries | |
org.netbeans.modules.apisupport.project.spi | |
org.netbeans.modules.apisupport.project.suite | |
org.netbeans.modules.apisupport.project.ui | |
org.netbeans.modules.apisupport.project.ui.customizer | |
org.netbeans.modules.apisupport.project.ui.platform | |
org.netbeans.modules.apisupport.project.ui.wizard | |
org.netbeans.modules.apisupport.project.ui.wizard.action | |
org.netbeans.modules.apisupport.project.ui.wizard.glf | |
org.netbeans.modules.apisupport.project.ui.wizard.javahelp | |
org.netbeans.modules.apisupport.project.ui.wizard.librarydescriptor | |
org.netbeans.modules.apisupport.project.ui.wizard.loader | |
org.netbeans.modules.apisupport.project.ui.wizard.moduleinstall | |
org.netbeans.modules.apisupport.project.ui.wizard.options | |
org.netbeans.modules.apisupport.project.ui.wizard.project | |
org.netbeans.modules.apisupport.project.ui.wizard.updatecenter | |
org.netbeans.modules.apisupport.project.ui.wizard.winsys | |
org.netbeans.modules.apisupport.project.ui.wizard.wizard | |
org.netbeans.modules.apisupport.project.universe | |
org.netbeans.modules.apisupport.refactoring | |
org.netbeans.modules.java.classpath | |
org.netbeans.modules.visual.action | |
org.netbeans.modules.visual.anchor | |
org.netbeans.modules.visual.animator | |
org.netbeans.modules.visual.border | |
org.netbeans.modules.visual.experimental.widget.general | |
org.netbeans.modules.visual.graph.layout | |
org.netbeans.modules.visual.laf | |
org.netbeans.modules.visual.layout | |
org.netbeans.modules.visual.router | |
org.netbeans.modules.visual.util | |
org.netbeans.modules.visual.vmd | |
org.netbeans.modules.visual.widget | |
org.netbeans.modules.web.api.webmodule |
API to access the properties of J2EE web modules.
This API will typically be used by modules that provide data objects,
wizards, editors, etc. for files used in J2EE web module (JSP, Html, deployment
descriptor, etc.). It will be also used by web framework clients and implementors.
|
org.netbeans.modules.web.spi.webmodule |
SPI for providers of J2EE web modules and frameworks.
This API will typically be used by modules that implement project types for
J2EE web module (various implementations of web module project, web module with
web services, portlets, etc.). It can be also used for implementation of web
module that is not based on Projects API. Another use case is implementing
support for web frameworks such as Struts or JSF.
A module that implements this API needs to expose an implementation of
{@link org.netbeans.modules.web.spi.webmodule.WebModuleProvider} either in
the project lookup (for implementations based on the Projects API) or in the global lookup.
The module will implement {@link org.netbeans.modules.web.spi.webmodule.WebModuleImplementation}
and use {@link org.netbeans.modules.web.spi.webmodule.WebModuleFactory}
to create a {@link org.netbeans.modules.web.api.webmodule.WebModule}.
A module wanting to provide support for a web framework needs to implement
{@link org.netbeans.modules.web.spi.webmodule.WebFrameworkProvider} and usually
also {@link org.netbeans.modules.web.spi.webmodule.WebModuleExtender}.
|
org.netbeans.modules.web.webmodule | |
org.netbeans.paint | |
org.netbeans.progress.module | |
org.netbeans.progress.spi | |
org.netbeans.spi.java.classpath |
SPI permitting new classpaths to be constructed and registered.
{@link org.netbeans.spi.java.classpath.ClassPathProvider}s can be registered
to default lookup in order to associate information about classpaths with files.
For example, a Java-oriented project type would normally indicate that its Java
sources have a certain classpath associated with them.
For a source file the ClassPathProvider has to return a
{@link org.netbeans.api.java.classpath.ClassPath} of the following ClassPath types:
- ClassPath.SOURCE - the classpath contains the source roots of the project
- ClassPath.BOOT - the classpath contains the jdk runtime libraries
- ClassPath.COMPILE - the classpath contains the project compile libraries (compile classpath)
it may also return a ClassPath of type ClassPath.EXEC pointing to the build output folder.
For build output the ClassPathProvider has to return a ClassPath of the following
types:
- ClassPath.BOOT - the classpath contains the jdk runtime libraries
- ClassPath.COMPILE - the classpath contains the project compile libraries (compile classpath)
- ClassPath.EXEC - the classpath contains the build output folder
{@link org.netbeans.spi.java.classpath.ClassPathFactory} may be used to
create new {@link org.netbeans.api.java.classpath.ClassPath} instances.
|
org.netbeans.spi.java.classpath.support |
Convenience classes to make it easier to create classpaths.
{@link org.netbeans.spi.java.classpath.support.ClassPathSupport} provides
various ways to create {@link org.netbeans.api.java.classpath.ClassPath} objects
beyond what the plain SPI provides.
{@link org.netbeans.spi.java.classpath.support.PathResourceBase} and
{@link org.netbeans.spi.java.classpath.support.CompositePathResourceBase} can be
used to define parts of a classpath in a controlled way.
|
org.netbeans.spi.java.queries |
Implementations of Java-related queries.
|
org.netbeans.spi.mobility.cfgfactory | |
org.netbeans.spi.mobility.cldcplatform | |
org.netbeans.spi.mobility.deployment | |
org.netbeans.spi.xml.cookies |
XML Tools Cookies SPI
Classes supporting cookie providers.
XML Tools Cookies SPI
This package contains supports for XML Tools Cookies API providers.
Requirements
Support classes must be:
- directly useful for common cases (XML is primary file)
- customizable for special cases
DataObject Supports
ValidateXMLSupport and CheckXMLSupport are provided for DataObject 's
EditorCookie or FileObject style input sources.
Other Supports
InputSource generalization may be required.
|
testRename | |