Guest User

Untitled

a guest
May 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. package com.app.screen
  2. {
  3. [Bindable]
  4. public class ScreenConstants
  5. {
  6. // House Links
  7. public static var AVERAGE_HOUSE:String = "Average House";
  8. public static var QUICK_SELECT_HOUSE:String = "Quick Select House";
  9. public static var ELECTRICITY_HOUSE:String = "Electricity House";
  10. public static var OTHER_SOURCES_HOUSE:String = "Other Energy Sources House";
  11. public static var LAWN_CARE_HOUSE:String = "Lawn Care House";
  12. public static var SUMMARY_HOUSE:String = "Summary House";
  13.  
  14. // Transportation Links
  15. public static var AVERAGE_TRANSPORTATION:String = "Average Transportation";
  16.  
  17. // Flight Links
  18. public static var AVERAGE_FLIGHT:String = "Average Flight";
  19.  
  20. // Error Messages
  21. public static var ERROR_NO_SELECTION:String = "Please make a selection. Don't worry, there is no wrong answer";
  22. public static var ERROR_NUMERIC_FIELD:String = "We’re counting on you to enter a number between 1 and 999.";
  23.  
  24. public static var ERROR_NO_KWH_MONTHLY:String = "Watt!? You haven’t entered your monthly kWh."
  25. public static var ERROR_NO_DOLLARS_MONTHLY:String = "Please enter your dollars per month. It just makes cents."
  26.  
  27.  
  28.  
  29. public function ScreenConstants()
  30. {
  31. }
  32.  
  33. }
  34. }
Add Comment
Please, Sign In to add comment