1/*
2ADOBE SYSTEMS INCORPORATED
3 Copyright 2008 Adobe Systems Incorporated
4 All Rights Reserved.
5
6NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the
7terms of the Adobe license agreement accompanying it.  If you have received this file from a
8source other than Adobe, then your use, modification, or distribution of it requires the prior
9written permission of Adobe.
10*/
11
12package com.adobe.utils
13{
14	internal final class LocaleParserState
15	{
16		public static const PRIMARY_LANGUAGE:int = 0;
17		public static const EXTENDED_LANGUAGES:int = 1;
18		public static const SCRIPT:int = 2;
19		public static const REGION:int = 3;
20		public static const VARIANTS:int = 5;
21		public static const EXTENSIONS:int = 6;
22		public static const PRIVATES:int = 7;
23
24	}
25}