netx.jnlp
Class PackageDesc
public class PackageDesc
extends java.lang.Object
The package element.
PackageDesc(String name, String part, boolean recursive) - Create a package descriptor.
|
String | getName() - Returns the package name.
|
String | getPart() - Returns the part name.
|
boolean | isRecursive() - Returns whether subpackages should be matched by this
package.
|
boolean | matches(String className) - Returns whether the specified class is part of this package.
|
PackageDesc
public PackageDesc(String name,
String part,
boolean recursive)
Create a package descriptor.
name
- the package namepart
- the part required by the packagerecursive
- whether the package includes subpackages
getName
public String getName()
Returns the package name.
getPart
public String getPart()
Returns the part name.
isRecursive
public boolean isRecursive()
Returns whether subpackages should be matched by this
package.
matches
public boolean matches(String className)
Returns whether the specified class is part of this package.
className
- the fully qualified class name