|
Oracle Fusion Middleware Oracle WebLogic Server API Reference 11g Release 1 (10.3.5) Part Number E13941-05 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectweblogic.apache.xml.serialize.HTMLdtd
public final class HTMLdtd
Utility class for accessing information specific to HTML documents.
The HTML DTD is expressed as three utility function groups. Two methods
allow for checking whether an element requires an open tag on printing
(HTMLdtd.isEmptyTag(java.lang.String)
) or on parsing (HTMLdtd.isOptionalClosing(java.lang.String)
).
Two other methods translate character references from name to value and from value to name. A small entities resource is loaded into memory the first time any of these methods is called for fast and efficient access.
Field Summary | |
---|---|
static String |
HTMLPublicId
Deprecated. Public identifier for HTML document type. |
static String |
HTMLSystemId
Deprecated. System identifier for HTML document type. |
static String |
XHTMLPublicId
Deprecated. Public identifier for XHTML document type. |
static String |
XHTMLSystemId
Deprecated. System identifier for XHTML document type. |
Constructor Summary | |
---|---|
HTMLdtd()
Deprecated. |
Method Summary | |
---|---|
static int |
charFromName(String name)
Deprecated. Returns the value of an HTML character reference by its name. |
static String |
fromChar(int value)
Deprecated. Returns the name of an HTML character reference based on its character value. |
static boolean |
isBoolean(String tagName,
String attrName)
Deprecated. Returns true if the specified attribute is a boolean and should be printed without the value. |
static boolean |
isClosing(String tagName,
String openTag)
Deprecated. Returns true if the opening of one element (tagName) implies the closing of another open element (openTag). |
static boolean |
isElementContent(String tagName)
Deprecated. Returns true if element is declared to have element content. |
static boolean |
isEmptyTag(String tagName)
Deprecated. Returns true if element is declared to be empty. |
static boolean |
isOnlyOpening(String tagName)
Deprecated. Returns true if element's closing tag is generally not printed. |
static boolean |
isOptionalClosing(String tagName)
Deprecated. Returns true if element's closing tag is optional and need not exist. |
static boolean |
isPreserveSpace(String tagName)
Deprecated. Returns true if element's textual contents preserves spaces. |
static boolean |
isURI(String tagName,
String attrName)
Deprecated. Returns true if the specified attribute it a URI and should be escaped appropriately. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String HTMLPublicId
public static final String HTMLSystemId
public static final String XHTMLPublicId
public static final String XHTMLSystemId
Constructor Detail |
---|
public HTMLdtd()
Method Detail |
---|
public static boolean isEmptyTag(String tagName)
tagName
- The element tag name (upper case)
public static boolean isElementContent(String tagName)
tagName
- The element tag name (upper case)
public static boolean isPreserveSpace(String tagName)
tagName
- The element tag name (upper case)
public static boolean isOptionalClosing(String tagName)
tagName
- The element tag name (upper case)
public static boolean isOnlyOpening(String tagName)
tagName
- The element tag name (upper case)
public static boolean isClosing(String tagName, String openTag)
tagName
- The newly opened elementopenTag
- The already opened element
public static boolean isURI(String tagName, String attrName)
tagName
- The element's tag nameattrName
- The attribute's namepublic static boolean isBoolean(String tagName, String attrName)
tagName
- The element's tag nameattrName
- The attribute's namepublic static int charFromName(String name)
name
- Name of character reference
public static String fromChar(int value)
value
- Character value of entity
|
Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Oracle Fusion Middleware Oracle WebLogic Server API Reference 11g Release 1 (10.3.5) Part Number E13941-05 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |