| SUMMARY: MODULE | CLASS | TYPE | PROC | VAR | CONST | DETAIL: TYPE | PROC | VAR | CONST |
ADT:StringBuffer
Exception
Exception
Object
Object
TextRider
URI
| Class List | |
| Authority | Registry-based authority component of an URI. |
| Class Summary: Authority [Detail] | |
+---URI.Authority | +--URI:Authority:RegistryBased.Authority Registry-based authority component of an URI. This is similar to URI:Authority:Unparsed.Authority, except for that the given authority name must not be empty, and that any escaped characters are replaced by their value. | |
| Field Summary | |
| regName-: STRING Holds the authority substring of a URI. | |
| Constructor Summary | |
| Init(Authority, STRING) | |
| New(STRING): Authority | |
| Method Summary | |
| Append(StringBuffer) Appends the textual representation of the authority component auth to the string sb. | |
| Clone(): Authority Creates a deep copy of the authority component referenced by auth. | |
| Copy(Authority) Copies contents of source auth to target dest. | |
| ParseAuthority(CharsLatin1, Offset) Parses the authority component str of an hierarchical URI. | |
| WriteXML(Writer) Writes an XML fragment describing the authority component to the writer w. | |
| Inherited Methods | |
From URI.Authority: | |
| Class Detail: Authority |
| Field Detail |
FIELD regName-: STRING
Holds the authority substring of a URI. Escaped characters are replaced with their character value.
| Constructor Detail |
PROCEDURE Init(auth: Authority;
regName: STRING)PROCEDURE New(regName: STRING): Authority
| Method Detail |
PROCEDURE (auth: Authority) Append(sb: StringBuffer)
Appends the textual representation of the authority component auth to the string sb.
[Description inherited from Append]
Redefines: Append
PROCEDURE (auth: Authority) Clone(): Authority
Creates a deep copy of the authority component referenced by auth.
[Description inherited from Clone]
Redefines: Clone
PROCEDURE (auth: Authority) Copy(dest: Authority)
Copies contents of source auth to target dest.
Pre-condition: The dynamic type of dest is an extension of the dynamic type of auth.
[Description inherited from Copy]
Redefines: Copy
PROCEDURE (auth: Authority) ParseAuthority(str: CharsLatin1;
offset: Offset)
RAISES ParseError;Parses the authority component str of an hierarchical URI. On success, the data is stored in the authority object auth and the result is NIL. In case of error, a message object is returned and auth is not modified. A character position in an error message refers to an index in str, incremented by the value of offset.
[Description inherited from ParseAuthority]
Redefines: ParseAuthority
PROCEDURE (auth: Authority) WriteXML(w: Writer)
Writes an XML fragment describing the authority component to the writer w.
[Description inherited from WriteXML]
Redefines: WriteXML