クラス XmlDocumentAdapter
- java.lang.Object
-
- org.xmlpull.v1.builder.adapter.XmlDocumentAdapter
-
- すべての実装されたインタフェース:
Cloneable,XmlContainer,XmlDocument
public class XmlDocumentAdapter extends Object implements XmlDocument
-
-
コンストラクタの概要
コンストラクタ コンストラクタ 説明 XmlDocumentAdapter(XmlDocument target)
-
メソッドの概要
-
-
-
コンストラクタの詳細
-
XmlDocumentAdapter
public XmlDocumentAdapter(XmlDocument target)
-
-
メソッドの詳細
-
clone
public Object clone() throws CloneNotSupportedException
- 定義:
cloneインタフェース内XmlDocument- オーバーライド:
cloneクラス内Object- 例外:
CloneNotSupportedException
-
children
public Iterable children()
インタフェースからコピーされた説明:XmlDocumentAn ordered list of child information items, in document order. The list contains exactly one element information item. The list also contains one processing instruction information item for each processing instruction outside the document element, and one comment information item for each comment outside the document element. Processing instructions and comments within the DTD are excluded. If there is a document type declaration, the list also contains a document type declaration information item.- 定義:
childrenインタフェース内XmlDocument
-
getDocumentElement
public XmlElement getDocumentElement()
- 定義:
getDocumentElementインタフェース内XmlDocument
-
requiredElement
public XmlElement requiredElement(XmlNamespace n, String name)
- 定義:
requiredElementインタフェース内XmlDocument
-
element
public XmlElement element(XmlNamespace n, String name)
- 定義:
elementインタフェース内XmlDocument
-
element
public XmlElement element(XmlNamespace n, String name, boolean create)
- 定義:
elementインタフェース内XmlDocument
-
notations
public Iterable notations()
インタフェースからコピーされた説明:XmlDocumentAn unordered set of notation information items, one for each notation declared in the DTD.- 定義:
notationsインタフェース内XmlDocument
-
unparsedEntities
public Iterable unparsedEntities()
インタフェースからコピーされた説明:XmlDocumentAn unordered set of unparsed entity information items, one for each unparsed entity declared in the DTD.- 定義:
unparsedEntitiesインタフェース内XmlDocument
-
getBaseUri
public String getBaseUri()
- 定義:
getBaseUriインタフェース内XmlDocument
-
getCharacterEncodingScheme
public String getCharacterEncodingScheme()
- 定義:
getCharacterEncodingSchemeインタフェース内XmlDocument
-
setCharacterEncodingScheme
public void setCharacterEncodingScheme(String characterEncoding)
- 定義:
setCharacterEncodingSchemeインタフェース内XmlDocument
-
isStandalone
public Boolean isStandalone()
- 定義:
isStandaloneインタフェース内XmlDocument
-
getVersion
public String getVersion()
- 定義:
getVersionインタフェース内XmlDocument
-
isAllDeclarationsProcessed
public boolean isAllDeclarationsProcessed()
- 定義:
isAllDeclarationsProcessedインタフェース内XmlDocument
-
setDocumentElement
public void setDocumentElement(XmlElement rootElement)
- 定義:
setDocumentElementインタフェース内XmlDocument
-
addChild
public void addChild(Object child)
- 定義:
addChildインタフェース内XmlDocument
-
insertChild
public void insertChild(int pos, Object child)- 定義:
insertChildインタフェース内XmlDocument
-
removeAllChildren
public void removeAllChildren()
- 定義:
removeAllChildrenインタフェース内XmlDocument
-
newComment
public XmlComment newComment(String content)
- 定義:
newCommentインタフェース内XmlDocument
-
addComment
public XmlComment addComment(String content)
- 定義:
addCommentインタフェース内XmlDocument
-
newDoctype
public XmlDoctype newDoctype(String systemIdentifier, String publicIdentifier)
- 定義:
newDoctypeインタフェース内XmlDocument
-
addDoctype
public XmlDoctype addDoctype(String systemIdentifier, String publicIdentifier)
- 定義:
addDoctypeインタフェース内XmlDocument
-
addDocumentElement
public XmlElement addDocumentElement(String name)
- 定義:
addDocumentElementインタフェース内XmlDocument
-
addDocumentElement
public XmlElement addDocumentElement(XmlNamespace namespace, String name)
- 定義:
addDocumentElementインタフェース内XmlDocument
-
newProcessingInstruction
public XmlProcessingInstruction newProcessingInstruction(String target, String content)
- 定義:
newProcessingInstructionインタフェース内XmlDocument
-
addProcessingInstruction
public XmlProcessingInstruction addProcessingInstruction(String target, String content)
- 定義:
addProcessingInstructionインタフェース内XmlDocument
-
removeAllUnparsedEntities
public void removeAllUnparsedEntities()
- 定義:
removeAllUnparsedEntitiesインタフェース内XmlDocument
-
addNotation
public XmlNotation addNotation(String name, String systemIdentifier, String publicIdentifier, String declarationBaseUri)
- 定義:
addNotationインタフェース内XmlDocument
-
removeAllNotations
public void removeAllNotations()
- 定義:
removeAllNotationsインタフェース内XmlDocument
-
-