home *** CD-ROM | disk | FTP | other *** search
- package com.facebook.data.users
- {
- import flash.events.Event;
- import flash.events.EventDispatcher;
- import flash.events.IEventDispatcher;
-
- public class GetInfoFieldValues implements IEventDispatcher
- {
- public static const ABOUT_ME:String = "about_me";
-
- public static const ACTIVITIES:String = "activities";
-
- public static const AFFILIATIONS:String = "affiliations";
-
- public static const BIRTHDAY:String = "birthday";
-
- public static const BOOKS:String = "books";
-
- public static const CURRENT_LOCATION:String = "current_location";
-
- public static const EDUCATION_HISTORY:String = "education_history";
-
- public static const EMAIL_HASHES:String = "email_hashes";
-
- public static const FIRST_NAME:String = "first_name";
-
- public static const HAS_ADDED_APP:String = "has_added_app";
-
- public static const HOMETOWN_LOCATION:String = "hometown_location";
-
- public static const HS_INFO:String = "hs_info";
-
- public static const INTERESTS:String = "interests";
-
- public static const IS_APP_USER:String = "is_app_user";
-
- public static const LAST_NAME:String = "last_name";
-
- public static const LOCALE:String = "locale";
-
- public static const MEETING_FOR:String = "meeting_for";
-
- public static const MEETING_SEX:String = "meeting_sex";
-
- public static const MOVIES:String = "movies";
-
- public static const MUSIC:String = "music";
-
- public static const NAME:String = "name";
-
- public static const NOTES_COUNT:String = "notes_count";
-
- public static const PIC:String = "pic";
-
- public static const PIC_WITH_LOGO:String = "pic_with_logo";
-
- public static const PIC_BIG:String = "pic_big";
-
- public static const PIC_BIG_WITH_LOGO:String = "pic_big_with_logo";
-
- public static const PIC_SMALL:String = "pic_small";
-
- public static const PIC_SMALL_WITH_LOGO:String = "pic_small_with_logo";
-
- public static const PIC_SQUARE:String = "pic_square";
-
- public static const PIC_SQUARE_WITH_LOGO:String = "pic_square_with_logo";
-
- public static const POLITICAL:String = "political";
-
- public static const PROFILE_UPDATE_TIME:String = "profile_update_time";
-
- public static const PROFILE_URL:String = "profile_url";
-
- public static const PROXIED_EMAIL:String = "proxied_email";
-
- public static const QUOTES:String = "quotes";
-
- public static const RELATIONSHIP_STATUS:String = "relationship_status";
-
- public static const RELIGION:String = "religion";
-
- public static const SEX:String = "sex";
-
- public static const SIGNIFICANT_OTHER_ID:String = "significant_other_id";
-
- public static const STATUS:String = "status";
-
- public static const TIMEZONE:String = "timezone";
-
- public static const TV:String = "tv";
-
- public static const WALL_COUNT:String = "wall_count";
-
- public static const WORK_HISTORY:String = "work_history";
-
- public static const NO_SESSION_VALUES:Array = [FIRST_NAME,LAST_NAME,NAME,LOCALE,AFFILIATIONS,PIC_SQUARE,PROFILE_URL];
-
- public static const ALL_VALUES:Array = [ABOUT_ME,ACTIVITIES,AFFILIATIONS,BIRTHDAY,BOOKS,CURRENT_LOCATION,EDUCATION_HISTORY,EMAIL_HASHES,FIRST_NAME,HAS_ADDED_APP,HOMETOWN_LOCATION,HS_INFO,INTERESTS,IS_APP_USER,LAST_NAME,LOCALE,MEETING_FOR,MEETING_SEX,MOVIES,MUSIC,NAME,NOTES_COUNT,PIC,PIC_WITH_LOGO,PIC_BIG,PIC_BIG_WITH_LOGO,PIC_SMALL,PIC_SMALL_WITH_LOGO,PIC_SQUARE,PIC_SQUARE_WITH_LOGO,POLITICAL,PROFILE_UPDATE_TIME,PROFILE_URL,PROXIED_EMAIL,QUOTES,RELATIONSHIP_STATUS,RELIGION,SEX,SIGNIFICANT_OTHER_ID,STATUS,TIMEZONE,TV,WALL_COUNT,WORK_HISTORY];
-
- private var _bindingEventDispatcher:EventDispatcher = new EventDispatcher(IEventDispatcher(this));
-
- public function GetInfoFieldValues()
- {
- super();
- }
-
- public function dispatchEvent(param1:Event) : Boolean
- {
- return this._bindingEventDispatcher.dispatchEvent(param1);
- }
-
- public function willTrigger(param1:String) : Boolean
- {
- return this._bindingEventDispatcher.willTrigger(param1);
- }
-
- public function addEventListener(param1:String, param2:Function, param3:Boolean = false, param4:int = 0, param5:Boolean = false) : void
- {
- this._bindingEventDispatcher.addEventListener(param1,param2,param3,param4,param5);
- }
-
- public function removeEventListener(param1:String, param2:Function, param3:Boolean = false) : void
- {
- this._bindingEventDispatcher.removeEventListener(param1,param2,param3);
- }
-
- public function hasEventListener(param1:String) : Boolean
- {
- return this._bindingEventDispatcher.hasEventListener(param1);
- }
- }
- }
-
-