home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / facebook / data / users / GetInfoFieldValues.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  5.0 KB  |  135 lines

  1. package com.facebook.data.users
  2. {
  3.    import flash.events.Event;
  4.    import flash.events.EventDispatcher;
  5.    import flash.events.IEventDispatcher;
  6.    
  7.    public class GetInfoFieldValues implements IEventDispatcher
  8.    {
  9.       public static const ABOUT_ME:String = "about_me";
  10.       
  11.       public static const ACTIVITIES:String = "activities";
  12.       
  13.       public static const AFFILIATIONS:String = "affiliations";
  14.       
  15.       public static const BIRTHDAY:String = "birthday";
  16.       
  17.       public static const BOOKS:String = "books";
  18.       
  19.       public static const CURRENT_LOCATION:String = "current_location";
  20.       
  21.       public static const EDUCATION_HISTORY:String = "education_history";
  22.       
  23.       public static const EMAIL_HASHES:String = "email_hashes";
  24.       
  25.       public static const FIRST_NAME:String = "first_name";
  26.       
  27.       public static const HAS_ADDED_APP:String = "has_added_app";
  28.       
  29.       public static const HOMETOWN_LOCATION:String = "hometown_location";
  30.       
  31.       public static const HS_INFO:String = "hs_info";
  32.       
  33.       public static const INTERESTS:String = "interests";
  34.       
  35.       public static const IS_APP_USER:String = "is_app_user";
  36.       
  37.       public static const LAST_NAME:String = "last_name";
  38.       
  39.       public static const LOCALE:String = "locale";
  40.       
  41.       public static const MEETING_FOR:String = "meeting_for";
  42.       
  43.       public static const MEETING_SEX:String = "meeting_sex";
  44.       
  45.       public static const MOVIES:String = "movies";
  46.       
  47.       public static const MUSIC:String = "music";
  48.       
  49.       public static const NAME:String = "name";
  50.       
  51.       public static const NOTES_COUNT:String = "notes_count";
  52.       
  53.       public static const PIC:String = "pic";
  54.       
  55.       public static const PIC_WITH_LOGO:String = "pic_with_logo";
  56.       
  57.       public static const PIC_BIG:String = "pic_big";
  58.       
  59.       public static const PIC_BIG_WITH_LOGO:String = "pic_big_with_logo";
  60.       
  61.       public static const PIC_SMALL:String = "pic_small";
  62.       
  63.       public static const PIC_SMALL_WITH_LOGO:String = "pic_small_with_logo";
  64.       
  65.       public static const PIC_SQUARE:String = "pic_square";
  66.       
  67.       public static const PIC_SQUARE_WITH_LOGO:String = "pic_square_with_logo";
  68.       
  69.       public static const POLITICAL:String = "political";
  70.       
  71.       public static const PROFILE_UPDATE_TIME:String = "profile_update_time";
  72.       
  73.       public static const PROFILE_URL:String = "profile_url";
  74.       
  75.       public static const PROXIED_EMAIL:String = "proxied_email";
  76.       
  77.       public static const QUOTES:String = "quotes";
  78.       
  79.       public static const RELATIONSHIP_STATUS:String = "relationship_status";
  80.       
  81.       public static const RELIGION:String = "religion";
  82.       
  83.       public static const SEX:String = "sex";
  84.       
  85.       public static const SIGNIFICANT_OTHER_ID:String = "significant_other_id";
  86.       
  87.       public static const STATUS:String = "status";
  88.       
  89.       public static const TIMEZONE:String = "timezone";
  90.       
  91.       public static const TV:String = "tv";
  92.       
  93.       public static const WALL_COUNT:String = "wall_count";
  94.       
  95.       public static const WORK_HISTORY:String = "work_history";
  96.       
  97.       public static const NO_SESSION_VALUES:Array = [FIRST_NAME,LAST_NAME,NAME,LOCALE,AFFILIATIONS,PIC_SQUARE,PROFILE_URL];
  98.       
  99.       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];
  100.       
  101.       private var _bindingEventDispatcher:EventDispatcher = new EventDispatcher(IEventDispatcher(this));
  102.       
  103.       public function GetInfoFieldValues()
  104.       {
  105.          super();
  106.       }
  107.       
  108.       public function dispatchEvent(param1:Event) : Boolean
  109.       {
  110.          return this._bindingEventDispatcher.dispatchEvent(param1);
  111.       }
  112.       
  113.       public function willTrigger(param1:String) : Boolean
  114.       {
  115.          return this._bindingEventDispatcher.willTrigger(param1);
  116.       }
  117.       
  118.       public function addEventListener(param1:String, param2:Function, param3:Boolean = false, param4:int = 0, param5:Boolean = false) : void
  119.       {
  120.          this._bindingEventDispatcher.addEventListener(param1,param2,param3,param4,param5);
  121.       }
  122.       
  123.       public function removeEventListener(param1:String, param2:Function, param3:Boolean = false) : void
  124.       {
  125.          this._bindingEventDispatcher.removeEventListener(param1,param2,param3);
  126.       }
  127.       
  128.       public function hasEventListener(param1:String) : Boolean
  129.       {
  130.          return this._bindingEventDispatcher.hasEventListener(param1);
  131.       }
  132.    }
  133. }
  134.  
  135.