⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 activitytype.as

📁 用Flex实现的一个关于减肥系统的web界面,内部没有实际的业务逻辑,只是一个原形.
💻 AS
字号:
package diet.util
{
	import diet.vo.activity.DietActivity;
	
	public class ActivityType
	{
		public static const BREAKFAST:String = "早餐";
		public static const LUNCH:String = "午餐";
		public static const SUPPER:String = "晚餐";
		
		public static const SPORTS:String = "运动";
		
		public static const typeArray:Array = new Array(BREAKFAST,LUNCH,SUPPER,SPORTS);
		
		public static function isDinnerActivity(type:String):Boolean
		{
			return typeArray.indexOf(type) <= 2 && typeArray.indexOf(type)>=0;
		}
		
	}
}

⌨️ 快捷键说明

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