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

PathResourceImplementation (NetBeans Java Support APIs) - NetBeans API Javadoc 5.0.0

 

org.netbeans.spi.java.classpath
Interface PathResourceImplementation

All Known Implementing Classes:
CompositePathResourceBase, PathResourceBase

public interface PathResourceImplementation

SPI interface for one classpath entry.

Since:
org.netbeans.api.java/1 1.4
See Also:
ClassPathImplementation

Field Summary
static String PROP_ROOTS
           
 
Method Summary
 void addPropertyChangeListener(PropertyChangeListener listener)
          Adds property change listener.
 ClassPathImplementation getContent()
          Returns ClassPathImplementation representing the content of the PathResourceImplementation.
 URL[] getRoots()
          Roots of the class path entry.
 void removePropertyChangeListener(PropertyChangeListener listener)
          Removes property change listener.
 

Field Detail

PROP_ROOTS

public static final String PROP_ROOTS
See Also:
Constant Field Values
Method Detail

getRoots

public URL[] getRoots()
Roots of the class path entry. In the case of simple resource it returns array containing just one URL. In the case of composite resource it returns array containing one or more URL.

Returns:
array of URL, never returns null.

getContent

public ClassPathImplementation getContent()
Returns ClassPathImplementation representing the content of the PathResourceImplementation. If the PathResourceImplementation represents leaf resource, it returns null. The ClassPathImplementation is live and can be used for path resource content modification.

Returns:
ClassPath in case of composite resource null for leaf resource

addPropertyChangeListener

public void addPropertyChangeListener(PropertyChangeListener listener)
Adds property change listener. The listener is notified when the roots of the entry are changed.

Parameters:
listener -

removePropertyChangeListener

public void removePropertyChangeListener(PropertyChangeListener listener)
Removes property change listener.

Parameters:
listener -

 

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