|
12 | 12 |
|
13 | 13 | abstract class AbstractDocument extends DomDocumentHandler |
14 | 14 | { |
15 | | - const TAG_ADDRESS = 'address'; |
16 | | - const TAG_ALL = 'all'; |
17 | | - const TAG_ANNOTATION = 'annotation'; |
18 | | - const TAG_ANY = 'any'; |
19 | | - const TAG_ANY_ATTRIBUTE = 'anyAttribute'; |
20 | | - const TAG_APPINFO = 'appinfo'; |
21 | | - const TAG_ATTRIBUTE = 'attribute'; |
22 | | - const TAG_ATTRIBUTE_GROUP = 'attributeGroup'; |
23 | | - const TAG_BINDING = 'binding'; |
24 | | - const TAG_BODY = 'body'; |
25 | | - const TAG_CHOICE = 'choice'; |
26 | | - const TAG_COMPLEX_CONTENT = 'complexContent'; |
27 | | - const TAG_COMPLEX_TYPE = 'complexType'; |
28 | | - const TAG_DEFINITIONS = 'definitions'; |
29 | | - const TAG_DOCUMENTATION = 'documentation'; |
30 | | - const TAG_ELEMENT = 'element'; |
31 | | - const TAG_ENUMERATION = 'enumeration'; |
32 | | - const TAG_EXTENSION = 'extension'; |
33 | | - const TAG_FIELD = 'field'; |
34 | | - const TAG_GROUP = 'group'; |
35 | | - const TAG_HEADER = 'header'; |
36 | | - const TAG_IMPORT = 'import'; |
37 | | - const TAG_INCLUDE = 'include'; |
38 | | - const TAG_INPUT = 'input'; |
39 | | - const TAG_KEY = 'key'; |
40 | | - const TAG_KEYREF = 'keyref'; |
41 | | - const TAG_LIST = 'list'; |
42 | | - const TAG_MEMBER_TYPES = 'memberTypes'; |
43 | | - const TAG_MESSAGE = 'message'; |
44 | | - const TAG_NOTATION = 'notation'; |
45 | | - const TAG_OPERATION = 'operation'; |
46 | | - const TAG_OUTPUT = 'output'; |
47 | | - const TAG_PART = 'part'; |
48 | | - const TAG_PORT = 'port'; |
49 | | - const TAG_PORT_TYPE = 'portType'; |
50 | | - const TAG_REDEFINE = 'redefine'; |
51 | | - const TAG_RESTRICTION = 'restriction'; |
52 | | - const TAG_SELECTOR = 'selector'; |
53 | | - const TAG_SEQUENCE = 'sequence'; |
54 | | - const TAG_SCHEMA = 'schema'; |
55 | | - const TAG_SIMPLE_CONTENT = 'simpleContent'; |
56 | | - const TAG_SIMPLE_TYPE = 'simpleType'; |
57 | | - const TAG_TYPES = 'types'; |
58 | | - const TAG_UNION = 'union'; |
59 | | - const TAG_UNIQUE = 'unique'; |
| 15 | + public const TAG_ADDRESS = 'address'; |
| 16 | + public const TAG_ALL = 'all'; |
| 17 | + public const TAG_ANNOTATION = 'annotation'; |
| 18 | + public const TAG_ANY = 'any'; |
| 19 | + public const TAG_ANY_ATTRIBUTE = 'anyAttribute'; |
| 20 | + public const TAG_APPINFO = 'appinfo'; |
| 21 | + public const TAG_ATTRIBUTE = 'attribute'; |
| 22 | + public const TAG_ATTRIBUTE_GROUP = 'attributeGroup'; |
| 23 | + public const TAG_BINDING = 'binding'; |
| 24 | + public const TAG_BODY = 'body'; |
| 25 | + public const TAG_CHOICE = 'choice'; |
| 26 | + public const TAG_COMPLEX_CONTENT = 'complexContent'; |
| 27 | + public const TAG_COMPLEX_TYPE = 'complexType'; |
| 28 | + public const TAG_DEFINITIONS = 'definitions'; |
| 29 | + public const TAG_DOCUMENTATION = 'documentation'; |
| 30 | + public const TAG_ELEMENT = 'element'; |
| 31 | + public const TAG_ENUMERATION = 'enumeration'; |
| 32 | + public const TAG_EXTENSION = 'extension'; |
| 33 | + public const TAG_FIELD = 'field'; |
| 34 | + public const TAG_GROUP = 'group'; |
| 35 | + public const TAG_HEADER = 'header'; |
| 36 | + public const TAG_IMPORT = 'import'; |
| 37 | + public const TAG_INCLUDE = 'include'; |
| 38 | + public const TAG_INPUT = 'input'; |
| 39 | + public const TAG_KEY = 'key'; |
| 40 | + public const TAG_KEYREF = 'keyref'; |
| 41 | + public const TAG_LIST = 'list'; |
| 42 | + public const TAG_MEMBER_TYPES = 'memberTypes'; |
| 43 | + public const TAG_MESSAGE = 'message'; |
| 44 | + public const TAG_NOTATION = 'notation'; |
| 45 | + public const TAG_OPERATION = 'operation'; |
| 46 | + public const TAG_OUTPUT = 'output'; |
| 47 | + public const TAG_PART = 'part'; |
| 48 | + public const TAG_PORT = 'port'; |
| 49 | + public const TAG_PORT_TYPE = 'portType'; |
| 50 | + public const TAG_REDEFINE = 'redefine'; |
| 51 | + public const TAG_RESTRICTION = 'restriction'; |
| 52 | + public const TAG_SELECTOR = 'selector'; |
| 53 | + public const TAG_SEQUENCE = 'sequence'; |
| 54 | + public const TAG_SCHEMA = 'schema'; |
| 55 | + public const TAG_SIMPLE_CONTENT = 'simpleContent'; |
| 56 | + public const TAG_SIMPLE_TYPE = 'simpleType'; |
| 57 | + public const TAG_TYPES = 'types'; |
| 58 | + public const TAG_UNION = 'union'; |
| 59 | + public const TAG_UNIQUE = 'unique'; |
60 | 60 |
|
61 | | - const ATTRIBUTE_TARGET_NAMESPACE = 'targetNamespace'; |
| 61 | + public const ATTRIBUTE_TARGET_NAMESPACE = 'targetNamespace'; |
62 | 62 |
|
63 | 63 | public function getNamespaceUri(string $namespace): string |
64 | 64 | { |
|
0 commit comments