org.htmlparser.tags
public class ObjectTag extends CompositeTag
| Constructor Summary | |
|---|---|
| ObjectTag()
Create a new object tag. | |
| Method Summary | |
|---|---|
| Hashtable | createObjectParamsTable()
Extract the object PARAM tags from the child list. |
| String[] | getEndTagEnders()
Return the set of end tag names that cause this tag to finish. |
| String[] | getIds()
Return the set of names handled by this tag. |
| String | getObjectClassId()
Get the classid of the object. |
| String | getObjectCodeBase()
Get the codebase of the object. |
| String | getObjectCodeType()
Get the codetype of the object. |
| String | getObjectData()
Get the data of the object. |
| String | getObjectHeight()
Get the height of the object. |
| Hashtable | getObjectParams()
Get the object parameters. |
| String | getObjectStandby()
Get the standby of the object. |
| String | getObjectType()
Get the type of the object. |
| String | getObjectWidth()
Get the width of the object. |
| String | getParameter(String key)
Get the PARAM |
| Enumeration | getParameterNames()
Get an enumeration over the (String) parameter names. |
| void | setObjectClassId(String newClassId)
Set the CLASSID |
| void | setObjectCodeBase(String newCodeBase)
Set the CODEBASE |
| void | setObjectCodeType(String newCodeType)
Set the CODETYPE |
| void | setObjectData(String newData)
Set the DATA |
| void | setObjectHeight(String newHeight)
Set the HEIGHT |
| void | setObjectParams(Hashtable newObjectParams)
Set the enclosed PARAM |
| void | setObjectStandby(String newStandby)
Set the STANDBY |
| void | setObjectType(String newType)
Set the TYPE |
| void | setObjectWidth(String newWidth)
Set the WIDTH |
| String | toString()
Output a string representing this object tag. |
PARAM tags from the child list.Returns: The list of object parameters (keys and values are String objects).
Returns: The names of following end tags that stop further scanning.
Returns: The names to be matched that create tags of this type.
Returns: The value of the CLASSID attribute.
Returns: The value of the CODEBASE attribute.
Returns: The value of the CODETYPE attribute.
Returns: The value of the DATA attribute.
Returns: The value of the HEIGHT attribute.
Returns: The list of parameter values (keys and values are String objects).
Returns: The value of the STANDBY attribute.
Returns: The value of the TYPE attribute.
Returns: The value of the WIDTH attribute.
PARAM tag with the given name.Parameters: key The object parameter name to get.
Returns: The value of the parameter or null if there is no parameter of that name.
Returns: An enumeration of the PARAM tag NAME attributes.
CLASSID attribute.Parameters: newClassId The new classid.
CODEBASE attribute.Parameters: newCodeBase The new codebase.
CODETYPE attribute.Parameters: newCodeType The new codetype.
DATA attribute.Parameters: newData The new data.
HEIGHT attribute.Parameters: newHeight The new height.
PARAM children.Parameters: newObjectParams The new parameters.
STANDBY attribute.Parameters: newStandby The new standby.
TYPE attribute.Parameters: newType The new type.
WIDTH attribute.Parameters: newWidth The new width.
Returns: A string showing the contents of the object tag.
| HTML Parser is an open source library released under LGPL. | |