(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System / System.Text.RegularExpressions / RegexRunner.cs
blobff0a7e919733a285dacda2a8f4b0377451b4f69f
1 //
2 // assembly: System
3 // namespace: System.Text.RegularExpressions
4 // file: RegexRunner.cs
5 //
6 // author: Dan Lewis (dihlewis@yahoo.co.uk)
7 // (c) 2002
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 //
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 using System;
31 using System.ComponentModel;
33 namespace System.Text.RegularExpressions {
34 [EditorBrowsable (EditorBrowsableState.Never)]
35 public abstract class RegexRunner {
36 // constructor
38 [MonoTODO]
39 protected internal RegexRunner () {
40 throw new NotImplementedException ("RegexRunner is not supported by Mono.");
43 // protected abstract
45 protected abstract bool FindFirstChar ();
47 protected abstract void Go ();
49 protected abstract void InitTrackCount ();
51 // protected methods
53 [MonoTODO]
54 protected void Capture (int capnum, int start, int end) {
55 throw new NotImplementedException ();
58 [MonoTODO]
59 protected static bool CharInSet (char ch, string set, string category) {
60 throw new NotImplementedException ();
63 [MonoTODO]
64 protected void Crawl (int i) {
65 throw new NotImplementedException ();
68 [MonoTODO]
69 protected int Crawlpos () {
70 throw new NotImplementedException ();
73 [MonoTODO]
74 protected void DoubleCrawl () {
75 throw new NotImplementedException ();
78 [MonoTODO]
79 protected void DoubleStack () {
80 throw new NotImplementedException ();
83 [MonoTODO]
84 protected void DoubleTrack () {
85 throw new NotImplementedException ();
88 [MonoTODO]
89 protected void EnsureStorage () {
90 throw new NotImplementedException ();
93 [MonoTODO]
94 protected bool IsBoundary (int index, int startpos, int endpos) {
95 throw new NotImplementedException ();
98 [MonoTODO]
99 protected bool IsECMABoundary (int index, int startpos, int endpos) {
100 throw new NotImplementedException ();
103 [MonoTODO]
104 protected bool IsMatched (int cap) {
105 throw new NotImplementedException ();
108 [MonoTODO]
109 protected int MatchIndex (int cap) {
110 throw new NotImplementedException ();
113 [MonoTODO]
114 protected int MatchLength (int cap) {
115 throw new NotImplementedException ();
118 [MonoTODO]
119 protected int Popcrawl () {
120 throw new NotImplementedException ();
123 [MonoTODO]
124 protected void TransferCapture (int capnum, int uncapnum, int start, int end) {
125 throw new NotImplementedException ();
128 [MonoTODO]
129 protected void Uncapture () {
130 throw new NotImplementedException ();
133 // internal
135 protected internal Match Scan (Regex regex, string text, int textbeg, int textend, int textstart, int prevlen, bool quick) {
136 throw new NotImplementedException ();
139 [MonoTODO]
140 protected internal int[] runcrawl;
141 [MonoTODO]
142 protected internal int runcrawlpos;
143 [MonoTODO]
144 protected internal Match runmatch;
145 [MonoTODO]
146 protected internal Regex runregex;
147 [MonoTODO]
148 protected internal int[] runstack;
149 [MonoTODO]
150 protected internal int runstackpos;
151 [MonoTODO]
152 protected internal string runtext;
153 [MonoTODO]
154 protected internal int runtextbeg;
155 [MonoTODO]
156 protected internal int runtextend;
157 [MonoTODO]
158 protected internal int runtextpos;
159 [MonoTODO]
160 protected internal int runtextstart;
161 [MonoTODO]
162 protected internal int[] runtrack;
163 [MonoTODO]
164 protected internal int runtrackcount;
165 [MonoTODO]
166 protected internal int runtrackpos;