@@ -5,15 +5,15 @@ namespace XmlSchemaClassGenerator
5
5
{
6
6
public interface IXmlSchemaNode
7
7
{
8
- string Name { get ; }
8
+ // string Name { get; }
9
9
string DefaultValue { get ; }
10
10
string FixedValue { get ; }
11
11
XmlSchemaForm Form { get ; }
12
12
XmlQualifiedName QualifiedName { get ; }
13
13
XmlQualifiedName RefName { get ; }
14
- XmlSchemaType SchemaType { get ; }
15
- XmlSchemaType NodeSchemaType { get ; }
16
- XmlQualifiedName SchemaTypeName { get ; }
14
+ //XmlQualifiedName SchemaTypeName { get; }
15
+ // XmlSchemaType SchemaType { get; }
16
+ //XmlSchemaType NodeSchemaType { get; }
17
17
18
18
XmlSchemaAnnotated Base { get ; }
19
19
XmlSchemaForm FormDefault { get ; }
@@ -25,23 +25,23 @@ public sealed class XmlSchemaAttributeEx : IXmlSchemaNode
25
25
26
26
public XmlSchemaAttribute Real { get ; }
27
27
28
- public string Name => Real . Name ;
28
+ // public string Name => Real.Name;
29
29
public string DefaultValue => Real . DefaultValue ;
30
30
public string FixedValue => Real . FixedValue ;
31
31
public XmlSchemaForm Form => Real . Form ;
32
32
public XmlQualifiedName QualifiedName => Real . QualifiedName ;
33
33
public XmlQualifiedName RefName => Real . RefName ;
34
- public XmlQualifiedName SchemaTypeName => Real . SchemaTypeName ;
35
- public XmlSchemaSimpleType SchemaType => Real . SchemaType ;
34
+ // public XmlQualifiedName SchemaTypeName => Real.SchemaTypeName;
35
+ // public XmlSchemaSimpleType SchemaType => Real.SchemaType;
36
36
public XmlSchemaSimpleType AttributeSchemaType => Real . AttributeSchemaType ;
37
37
38
38
public XmlSchemaAnnotated Base => Real ;
39
39
40
40
public XmlSchemaForm FormDefault => Base . GetSchema ( ) . AttributeFormDefault ;
41
41
42
- XmlSchemaType IXmlSchemaNode . SchemaType => SchemaType ;
42
+ // XmlSchemaType IXmlSchemaNode.SchemaType => SchemaType;
43
43
44
- XmlSchemaType IXmlSchemaNode . NodeSchemaType => AttributeSchemaType ;
44
+ // XmlSchemaType IXmlSchemaNode.NodeSchemaType => AttributeSchemaType;
45
45
46
46
public XmlSchemaUse Use => Real . Use ;
47
47
@@ -55,23 +55,23 @@ public sealed class XmlSchemaElementEx : IXmlSchemaNode
55
55
56
56
public XmlSchemaElement Real { get ; }
57
57
58
- public string Name => Real . Name ;
58
+ // public string Name => Real.Name;
59
59
public string DefaultValue => Real . DefaultValue ;
60
60
public string FixedValue => Real . FixedValue ;
61
61
public XmlSchemaForm Form => Real . Form ;
62
62
public XmlQualifiedName QualifiedName => Real . QualifiedName ;
63
63
public XmlQualifiedName RefName => Real . RefName ;
64
- public XmlQualifiedName SchemaTypeName => Real . SchemaTypeName ;
65
- public XmlSchemaType SchemaType => Real . SchemaType ;
64
+ // public XmlQualifiedName SchemaTypeName => Real.SchemaTypeName;
65
+ // public XmlSchemaType SchemaType => Real.SchemaType;
66
66
public XmlSchemaType ElementSchemaType => Real . ElementSchemaType ;
67
67
68
68
public XmlSchemaAnnotated Base => Real ;
69
69
70
70
public XmlSchemaForm FormDefault => Base . GetSchema ( ) . ElementFormDefault ;
71
71
72
- XmlSchemaType IXmlSchemaNode . SchemaType => SchemaType ;
72
+ // XmlSchemaType IXmlSchemaNode.SchemaType => SchemaType;
73
73
74
- XmlSchemaType IXmlSchemaNode . NodeSchemaType => ElementSchemaType ;
74
+ // XmlSchemaType IXmlSchemaNode.NodeSchemaType => ElementSchemaType;
75
75
76
76
public bool IsNillable => Real . IsNillable ;
77
77
0 commit comments