Methods Summary |
---|
public java.util.Map | getAttributes()Gets the attributes of the MLET tag. The keys in
the returned map are the attribute names in lowercase, for
example codebase . The values are the associated
attribute values.
return attributes;
|
public java.lang.String | getCode()Gets the value of the CODE
attribute of the MLET tag.
return getParameter("code");
|
public java.net.URL | getCodeBase()Gets the code base URL.
return baseURL;
|
public java.net.URL | getDocumentBase()Gets the MLet text file's base URL.
return documentURL;
|
public java.lang.String | getJarFiles()Gets the list of .jar files specified by the ARCHIVE
attribute of the MLET tag.
return getParameter("archive");
|
public java.lang.String | getName()Gets the value of the NAME
attribute of the MLET tag.
return getParameter("name");
|
private java.lang.String | getParameter(java.lang.String name)Gets the value of the specified
attribute of the MLET tag.
return attributes.get(name.toLowerCase());
|
public java.util.List | getParameterTypes()Gets the list of values of the TYPE attribute in
each nested <PARAM> tag within the MLET
tag.
return types;
|
public java.util.List | getParameterValues()Gets the list of values of the VALUE attribute in
each nested <PARAM> tag within the MLET
tag.
return values;
|
public java.lang.String | getSerializedObject()Gets the value of the OBJECT
attribute of the MLET tag.
return getParameter("object");
|
public java.lang.String | getVersion()Gets the value of the VERSION
attribute of the MLET tag.
return getParameter("version");
|