Instance Method インスタンスメソッド

parser:foundExternalEntityDeclarationWithName:publicID:systemID:

Sent by a parser object to its delegate when it encounters an external entity declaration. パーサーオブジェクトによってそれの委任先へと送られます、それがある外部エンティティ宣言と遭遇する時に。

Declaration 宣言

- (void)parser:(NSXMLParser *)parser 
foundExternalEntityDeclarationWithName:(NSString *)name 
      publicID:(NSString *)publicID 
      systemID:(NSString *)systemID;

Parameters パラメータ

parser

An NSXMLParser object parsing XML. XMLを構文解析しているNSXMLParserオブジェクト。

entityName

A string that is the name of an entity. エンティティの名前である文字列。

publicID

A string that specifies the public ID associated with entityName. entityNameと結びつけられたパブリックIDを指定する文字列。

systemID

A string that specifies the system ID associated with entityName. entityNameと結びつけられるシステムIDを指定する文字列。

See Also 参照

Handling the DTD DTDを取り扱う

Related Documentation 関連文書