-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathInstanceObject.cs
84 lines (72 loc) · 1.8 KB
/
InstanceObject.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
namespace Microsoft.Xml.XMLGen {
using System.Xml;
using System.Xml.Schema;
using System.Collections;
using System.Xml.Serialization;
using System.Diagnostics;
internal abstract class InstanceObject {
XmlQualifiedName qualifiedName;
XmlValueGenerator valueGenerator;
XmlSchemaForm form;
string defaultValue;
string fixedValue;
bool firstGen = true;
internal XmlQualifiedName QualifiedName {
get {
return qualifiedName;
}
set {
qualifiedName = value;
}
}
internal XmlValueGenerator ValueGenerator {
get {
return valueGenerator;
}
set {
valueGenerator = value;
}
}
internal XmlSchemaForm Form {
get {
return form;
}
set {
form = value;
}
}
internal string DefaultValue {
get {
return defaultValue;
}
set {
defaultValue = value;
}
}
internal string FixedValue {
get {
return fixedValue;
}
set {
fixedValue = value;
}
}
internal bool IsFixed {
get {
if (fixedValue != null) {
return true;
}
return false;
}
}
internal bool HasDefault {
get {
if (defaultValue != null && firstGen) {
firstGen = false;
return true;
}
return false;
}
}
}
}