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

📄 sortproperty.as

📁 as30的详细例子,包含了大量的例子,是不可多得的学习AS3的好资料
💻 AS
字号:
package com.example.programmingas3.playlist
{
	/**
	 * A pseudo-enum representing the different properties by which a Song instance
	 * can be sorted.
	 */
	public final class SortProperty
	{
		// ------- Public Constants -------
		
		// These constants represent the different properties
		// that the list of songs can be sorted by,
		// providing a mechanism to map a "friendly" name to the actual property name
		public static const TITLE:SortProperty = new SortProperty("title");
		public static const ARTIST:SortProperty = new SortProperty("artist");
		public static const YEAR:SortProperty = new SortProperty("year");

		
		// ------- Private Variables -------
		private var _propertyName:String;


		// ------- Constructor -------
		
		public function SortProperty(property:String)
		{
			_propertyName = property;
		}


		// ------- Public Properties -------
		
		public function get propertyName():String
		{
			return _propertyName;
		}
	}
}

⌨️ 快捷键说明

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