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

Library (NetBeans Project Libraries API) - NetBeans API Javadoc 5.0.0

 

org.netbeans.api.project.libraries
Class Library

java.lang.Object
  extended byorg.netbeans.api.project.libraries.Library

public final class Library
extends Object

Library models typed bundle of typed volumes.

Library volumes are typed and query-able by their type. The type is represented by type string. Strictly speaking volumes are named rather then typed but the name express their type. The volume is a list of resoruces.

For more details see libraries overview.


Field Summary
static String PROP_CONTENT
           
static String PROP_DESCRIPTION
           
static String PROP_NAME
           
 
Method Summary
 void addPropertyChangeListener(PropertyChangeListener listener)
          Adds PropertyChangeListener
 boolean equals(Object obj)
           
 List getContent(String volumeType)
          Access typed but raw library data.
 String getDescription()
          Returns description of the library.
 String getDisplayName()
          Returns the display name of the library.
 String getName()
          Get library binding name.
 String getType()
          Gets the type of library.
 int hashCode()
           
 void removePropertyChangeListener(PropertyChangeListener listener)
          Removes PropertyChangeListener
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PROP_NAME

public static final String PROP_NAME
See Also:
Constant Field Values

PROP_DESCRIPTION

public static final String PROP_DESCRIPTION
See Also:
Constant Field Values

PROP_CONTENT

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

getContent

public List getContent(String volumeType)
Access typed but raw library data.

The contents are defined by SPI providers and identified by the volume types. For example the j2se library supports the following volume types: classpath - the library classpath roots, src - the library sources, javadoc - the library javadoc. Your module must have contract with a particular provider's module to be able to query it effectively.

Parameters:
volumeType - which resources to return.
Returns:
path of URLs of given type (possibly empty but never null)

getName

public String getName()
Get library binding name. The name identifies library in scope of one libraries storage.

Returns:
String with library name

getDescription

public String getDescription()
Returns description of the library. The description provides more detailed information about the library.

Returns:
String the description or null if the description is not available

getDisplayName

public String getDisplayName()
Returns the display name of the library. The display name is either equal to the name or is a localized version of the name.

Returns:
String the display name, never returns null.

getType

public String getType()
Gets the type of library. The library type identifies the provider which has created the library and implies the volues contained in it.

Returns:
String (e.g. j2se for J2SE library)

equals

public boolean equals(Object obj)

hashCode

public int hashCode()

addPropertyChangeListener

public void addPropertyChangeListener(PropertyChangeListener listener)
Adds PropertyChangeListener

Parameters:
listener -

removePropertyChangeListener

public void removePropertyChangeListener(PropertyChangeListener listener)
Removes PropertyChangeListener

Parameters:
listener -

 

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