init?(xmlString : String)
NSXMLDTDNode
object initialized with the DTD declaration in a given string.
与えられた文字列の中のDTD宣言で初期化されたNSXMLDTDNode
オブジェクトを返します。
Availability 有効性
Technology
class XMLDTDNode : XMLNode
XMLDTDNode
objects are the sole children of a XMLDTD
object (possibly along with comment nodes and processing-instruction nodes). They themselves cannot have any children.
XMLDTDNode
オブジェクトそれらは、XMLDTD
オブジェクトの単独の子孫です(おそらくコメントノードと処理命令ノードに加えて)。それらはそれら自身では何ら子を持てません。
XMLDTDNode
objects can be of four kinds—element, attribute-list, entity, or notation declaration—and can also be of a subkind, as specified by a XMLDTDNode
constant. For example, a DTD entity-declaration node could represent an unparsed entity declaration (XMLDTDNode
) rather than a parameter entity declaration (XMLDTDNode
). You can use a DTD node’s subkind to help determine how to handle the value of the node.
XMLDTDNode
オブジェクトは4つの種類 — 要素、属性リスト、エンティティ、または表記法宣言 — が可能です、そしてまた下位種類も可能です、XMLDTDNode
定数で指定されるように。例えば、あるDTDエンティティ宣言ノードは、構文解析されないエンティティ宣言(XMLDTDNode
)を表すかもしれません、パラメータエンティティ宣言(XMLDTDNode
)よりむしろ。あなたはDTDノードの持つ下位種類を使って、ノードの値をどのように処理するか判定する助けにできます。
You can create an XMLDTDNode
object with the init(xml
method, the XMLNode
class method dtd
, or with the XMLNode
initializer init(kind:
(in the latter method supplying the appropriate XMLNode
constant).
あなたは、XMLDTDNode
オブジェクトをinit(xml
メソッド、XMLNode
のクラスメソッドdtd
で、またはXMLNode
のイニシャライザinit(kind:
で作成できます(後者のメソッドにおいて適切なXMLNode
定数を提供することで)。
Setting the object value or string value of an XMLDTDNode
objects affects different parts of different kinds of declaration. See the related programming topic for more information.
あるXMLDTDNode
オブジェクトのオブジェクト値または文字列値を設定することは、宣言の異なる種類の宣言の異なる部分に影響します。関連プログラミングトピックをさらなる情報のために見てください。
init?(xmlString : String)
NSXMLDTDNode
object initialized with the DTD declaration in a given string.
与えられた文字列の中のDTD宣言で初期化されたNSXMLDTDNode
オブジェクトを返します。
var dtdKind : XMLDTDNode.DTDKind
var notationName : String?
var publicID : String?
var systemID : String?
enum XMLDTDNode.DTDKind
NSXMLDTDNode
object. You set the DTD-node kind using the setDTDKind: method.
NSXMLDTDNode
オブジェクトによって表されるDTD宣言の種類と下位種類を指定する定数それらに対して定義される型。あなたは、DTDノード種類をsetDTDKind:メソッドを使って設定します。
DTD Node Kind Constants
DTDノード種類定数
NSXMLDTDNode
object. You set the DTD-node kind using the setDTDKind: method.
NSXMLDTDNode
オブジェクトによって表されるDTD宣言の種類と下位種類を指定する定数それら。あなたは、DTDノード種類をsetDTDKind:メソッドを使って設定します。
class XMLDTD
class XMLDocument
class XMLElement
class XMLNode