validator.as

来自「as30的详细例子,包含了大量的例子,是不可多得的学习AS3的好资料」· AS 代码 · 共 22 行

AS
22
字号
package com.example.programmingas3.errors
{
	public class Validator
	{

		public static function validateEmployeeXML(employee:XML):void 
		{
			// checks for the integrity of items in the XML
			if (employee.costCenter.length() < 1) {
				throw new FatalError(9000);
			}
			
			if (employee.costCenter.length() > 1) {
				throw new WarningError(9001);
			}
			
			if (employee.ssn.length() != 1) {
				throw new FatalError(9002);
			}
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?