- public class Library
- extends klentry
Information about a Java library.
Warning: the key field is used to store a unique identifier
and should not be modified.
Library()
- Creates a new Library object.
getDesc()
- Returns the description of the Java library (as displayed in
the vqServer control centre).
getLocation()
- Returns the location of the Java library (as displayed in
the vqServer control centre).
kill()
- Kills the Library object.
save(vqos)
- Writes information about the Java library to the output stream specified in
vqServer .cfg file format.
setDesc(String)
- Sets the description of the Java library.
setLocation(String)
- Sets the location of the Java library.
Library
public Library()
Creates a new Library object.
save
public void save(vqos os) throws java.io.IOException
Writes information about the Java library to the output stream specified in
vqServer .cfg file format.
- Parameters:
os
- the output stream to write the Java library to
- Overrides:
- save in class klentry
kill
public void kill()
Kills the Library object.
Warning: do not invoke this method if the library object is
a member of a list.
- Overrides:
- kill in class klentry
getLocation
public java.lang.String getLocation()
Returns the location of the Java library (as displayed in
the vqServer control centre).
setLocation
public void setLocation(java.lang.String location)
Sets the location of the Java library.
getDesc
public java.lang.String getDesc()
Returns the description of the Java library (as displayed in
the vqServer control centre).
setDesc
public void setDesc(java.lang.String description)
Sets the description of the Java library.