A
download StringValidator.as
Language: ActionScript
Copyright: (C) 2003-2006 Adobe Macromedia Software LLC and its licensors.
LOC: 100
Project Info
Flex SDK(flex_sdk_2.zip)
Server: Adobe FLEX
Type: zip
...works\source\mx\validators\
   CreditCardValidator.as
   ...ardValidatorCardType.as
   CurrencyValidator.as
   ...ValidatorAlignSymbol.as
   DateValidator.as
   EmailValidator.as
   IValidatorListener.as
   NumberValidator.as
   PhoneNumberValidator.as
   RegExpValidationResult.as
   RegExpValidator.as
   SocialSecurityValidator.as
   StringValidator.as
   ValidationResult.as
   Validator.as
   ZipCodeValidator.as
   ...eValidatorDomainType.as

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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
////////////////////////////////////////////////////////////////////////////////
//
//  Copyright (C) 2003-2006 Adobe Macromedia Software LLC and its licensors.
//  All Rights Reserved. The following is Source Code and is subject to all
//  restrictions on such code as contained in the End User License Agreement
//  accompanying this product.
//
////////////////////////////////////////////////////////////////////////////////

package mx.validators
{

import mx.managers.ISystemManager;
import mx.managers.SystemManager;
import mx.resources.ResourceBundle;
import mx.utils.StringUtil;

/**
 *  The StringValidator class validates that the length of a String 
 *  is within a specified range. 
 *  
 *  @mxml
 *  
 *  <p>The <code>&lt;mx:StringValidator&gt;</code> tag
 *  inherits all of the tag attributes of its superclass,
 *  and add the following tag attributes:</p>
 *  
 *  <pre>
 *  &lt;mx:StringValidator
 *    maxLength="NaN" 
 *    minLength="NaN" 
 *    tooLongError="This string is longer than the maximum allowed length." 
 *    tooShortError="This string is shorter than the minimum allowed length." 
 *  /&gt;
 *  </pre>
 *  
 *  @includeExample examples/StringValidatorExample.mxml
 */
public class StringValidator extends Validator
{
	include "../core/Version.as";

	//--------------------------------------------------------------------------
	//
	//  Class initialization
	//
	//--------------------------------------------------------------------------

	loadResources();
	
	//--------------------------------------------------------------------------
	//
	//  Class resources
	//
	//--------------------------------------------------------------------------

	[ResourceBundle("validators")]

    /**
	 *  @private    
     */
	private static var packageResources:ResourceBundle;

    /**
	 *  @private    
     */
	private static var resourceMaxLength:Number;

    /**
	 *  @private    
     */
	private static var resourceMinLength:Number;

    /**
	 *  @private    
     */
	private static var resourceTooLongError:String;

    /**
	 *  @private    
     */
	private static var resourceTooShortError:String;

    /**
	 *  @private    
     */
	private var isTooLongErrorSet:Boolean;

    /**
	 *  @private    
     */
	private var isTooShortErrorSet:Boolean;

	//--------------------------------------------------------------------------
	//
	//  Class methods
	//
	//--------------------------------------------------------------------------

    /**
	 *  @private    
     *  Loads resources for this class.
     */
	private static function loadResources():void
	{
		resourceMaxLength = packageResources.getNumber("maxLength");

		resourceMinLength = packageResources.getNumber("minLength");

		resourceTooLongError = packageResources.getString("tooLongError");

		resourceTooShortError = packageResources.getString("tooShortError");
	}
	
	/**
	 *  Convenience method for calling a validator.
	 *  Each of the standard Flex validators has a similar convenience method.
	 *
	 *  @param validator The StringValidator instance.
	 *
	 *  @param value A field to validate.
	 *
	 *  @param baseField Text representation of the subfield
	 *  specified in the <code>value</code> parameter.
	 *  For example, if the <code>value</code> parameter specifies
	 *  value.mystring, the <code>baseField</code> value
	 *  is <code>"mystring"</code>.
     *
	 *  @return An Array of ValidationResult objects, with one
	 *  ValidationResult  object for each field examined by the validator. 
	 *
	 *  @see mx.validators.ValidationResult
	 */
	public static function validateString(validator:StringValidator,
										  value:Object,
										  baseField:String = null):Array
	{
		var results:Array = [];
		
		var val:String = value != null ? String(value) : "";

		if (!isNaN(validator.maxLength) && (val.length > validator.maxLength))
		{
			results.push(new ValidationResult(
				true, baseField, "tooLong",
				validator.isTooLongErrorSet ? validator.tooLongError :
				StringUtil.substitute(validator.tooLongError, validator.maxLength)));
			return results;
		}

		if (!isNaN(validator.minLength) && (val.length < validator.minLength))
		{
			results.push(new ValidationResult(
				true, baseField, "tooShort",
				validator.isTooShortErrorSet ? validator.tooShortError :
				StringUtil.substitute(validator.tooShortError, validator.minLength)));
			return results;
		}

		return results;
	}

	//--------------------------------------------------------------------------
	//
	//  Constructor
	//
	//--------------------------------------------------------------------------

	/**
	 *  Constructor.
	 */
	public function StringValidator()
	{
		super();

		bundleChanged();
	}

	//--------------------------------------------------------------------------
	//
	//  Properties
	//
	//--------------------------------------------------------------------------

	//----------------------------------
	//  maxLength
	//----------------------------------

	[Inspectable(category="General", defaultValue="NaN")]

	/** 
	 *  Maximum length for a valid String. 
	 *  A value of NaN means this property is ignored.
	 *
	 *  @default NaN
	 */
	public var maxLength:Number;
	
	//----------------------------------
	//  minLength
	//----------------------------------

	[Inspectable(category="General", defaultValue="NaN")]

	/** 
	 *  Minimum length for a valid String.
	 *  A value of NaN means this property is ignored.
	 *
	 *  @default NaN
	 */
	public var minLength:Number;

	//--------------------------------------------------------------------------
	//
	//  Properties: Errors
	//
	//--------------------------------------------------------------------------

	//----------------------------------
	//  tooLongError
	//----------------------------------

	/**
	 *  @private
	 *  Storage for the tooLongError property.
	 */
	private var _tooLongError:String;

    [Inspectable(category="Errors", defaultValue="This string is longer than the maximum allowed length. This must be less than {0} characters long.")]

	/** 
	 *  Error message when the String is longer
	 *  than the <code>maxLength</code> property.
	 *
	 *  @default "This String is longer than the maximum allowed length."
	 */
	public function get tooLongError():String 
	{
		return _tooLongError;
	}

	/*
	 *  @private
	 */
	public function set tooLongError(value:String):void
    {
		isTooLongErrorSet = true;
        _tooLongError = value;
    }

	//----------------------------------
	//  tooShortError
	//----------------------------------

	/**
	 *  @private
	 *  Storage for the tooShortError property.
	 */
	private var _tooShortError:String;
	
	[Inspectable(category="Errors", defaultValue="This string is shorter than the minimum allowed length. This must be at least {0} characters long.")]

	/** 
	 *  Error message when the string is shorter
	 *  than the <code>minLength</code> property.
	 *
	 *  @default "This String is shorter than the minimum allowed length."
	 */
	public function get tooShortError():String 
	{
		return _tooShortError;
	}

	/*
	 *  @private
	 */
	public function set tooShortError(value:String):void
    {
		isTooShortErrorSet = true;
        _tooShortError = value;
    }
	
	//--------------------------------------------------------------------------
	//
	//  Overridden methods
	//
	//--------------------------------------------------------------------------

	/**
     *  Override of the base class <code>doValidation()</code> method
     *  to validate a String.
     *
	 *  <p>You do not call this method directly;
	 *  Flex calls it as part of performing a validation.
	 *  If you create a custom Validator class, you must implement this method.</p>
	 *
     *  @param value Object to validate.
     *
	 *  @return An Array of ValidationResult objects, with one ValidationResult 
	 *  object for each field examined by the validator. 
	 */
	override protected function doValidation(value:Object):Array
    {
		var results:Array = super.doValidation(value);
		
		// Return if there are errors
		// or if the required property is set to false and length is 0.
		var val:String = value ? String(value) : "";
		if (results.length > 0 || ((val.length == 0) && !required))
			return results;
		else
		    return StringValidator.validateString(this, value, null);
    }

	//--------------------------------------------------------------------------
	//
	//  Methods
	//
	//--------------------------------------------------------------------------

    /**
	 *  @private    
     *  Populates localizable properties from the loaded bundle for this class.
     */
	private function bundleChanged():void
	{
		maxLength = resourceMaxLength;
		minLength = resourceMinLength;
		_tooLongError = resourceTooLongError;
		_tooShortError = resourceTooShortError;			
		isTooLongErrorSet = false;
		isTooShortErrorSet = false;
	}
}

}

About Koders | Resources | Downloads | Support | Black Duck | Terms of Service | DMCA | Privacy Policy | Contact Us