📄 validator.as
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -