Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ControlBuilder.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7acb206a3a38c6049478d16f3c9340bf0a9ebc76 (plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
//
// System.Web.UI.ControlBuilder.cs
//
// Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

using System;
using System.Collections;

namespace System.Web.UI {

	public class ControlBuilder
	{
		TemplateParser parser;
		ControlBuilder parentBuilder;
		Type type;	       
		string tagName;
		string id;
		IDictionary attribs;
		int line;
		string fileName;

		public ControlBuilder ()
		{
		}


		internal ControlBuilder (
			TemplateParser parser, ControlBuilder parentBuilder,
			Type type, string tagName, string id,
			IDictionary attribs, int line, string sourceFileName)

		{
			this.parser = parser;
			this.parentBuilder = parentBuilder;
			this.type = type;
			this.tagName = tagName;
			this.id = id;
			this.attribs = attribs;
			this.line = line;
			this.fileName = sourceFileName;
		}

		public Type ControlType {
			get { return type; }
		}

		[MonoTODO]
		public bool FChildrenAsProperties {
			get { return false; }
		}

		[MonoTODO]
		public bool FIsNonParserAccessor {
			get { return false; }
		}

		[MonoTODO]
		public bool HasAspCode {
			get { return false; }
		}

		public string ID {
			get { return id; }

			set { id = value; }
		}

		[MonoTODO]
		public bool InDesigner {
			get { return false; }
		}

		[MonoTODO]
		public Type NamingContainerType {
			get { return null; }
		}

		protected TemplateParser Parser {
			get { return parser; }
		}

		public string TagName {
			get { return tagName; }
		}

		[MonoTODO]
		public virtual bool AllowWhitespaceLiterals ()
		{
			return false;
		}

		[MonoTODO]
		public virtual void AppendLiteralString (string s)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public virtual void AppendSubBuilder (ControlBuilder subBuilder)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public virtual void CloseControl ()
		{
		}

		[MonoTODO]
		public static ControlBuilder CreateBuilderFromType (
			TemplateParser parser, ControlBuilder parentBuilder,
			Type type, string tagName, string id,
			IDictionary attribs, int line, string sourceFileName)
		{
			return new ControlBuilder (parser, parentBuilder, type,
						   tagName, id, attribs, line, sourceFileName);
		}

		[MonoTODO]
		public virtual Type GetChildControlType (string tagName, IDictionary attribs)
		{
			return attribs [tagName] as Type;
		}

		[MonoTODO]
		public virtual bool HasBody ()
		{
			return false;
		}

		[MonoTODO]
		public virtual bool HtmlDecodeLiterals ()
		{
			return false;
		}

		[MonoTODO]
		public virtual void Init (
			TemplateParser parser, ControlBuilder parentBuilder,
			Type type, string tagName, string id, IDictionary attribs)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public virtual bool NeedsTagInnerText ()
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public virtual void OnAppendToParentBuilder ()
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public virtual void SetTagInnerText (string text)
		{
			throw new NotImplementedException ();
		}
	}
}