/v3.2/nimbits-tds/src/com/nimbits/client/icons/Icons.java

http://nimbits-server.googlecode.com/ · Java · 169 lines · 103 code · 54 blank · 12 comment · 0 complexity · 3d75b1afc84386dc46d1965a4e015e8b MD5 · raw file

  1. /*
  2. * Copyright (c) 2010 Tonic Solutions LLC.
  3. *
  4. * http://www.nimbits.com
  5. *
  6. *
  7. * Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * http://www.gnu.org/licenses/gpl.html
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
  12. */
  13. package com.nimbits.client.icons;
  14. import com.google.gwt.core.client.GWT;
  15. import com.google.gwt.resources.client.ClientBundle;
  16. import com.google.gwt.resources.client.ImageResource;
  17. public interface Icons extends ClientBundle {
  18. static final Icons INSTANCE = GWT.create(Icons.class);
  19. @Source("diagram16.png")
  20. ImageResource diagram();
  21. @Source("point_low.png")
  22. ImageResource point_low();
  23. @Source("point_high.png")
  24. ImageResource point_high();
  25. @Source("point_idle.png")
  26. ImageResource point_idle();
  27. @Source("point_ok.png")
  28. ImageResource point_ok();
  29. @Source("category16.png")
  30. ImageResource category();
  31. @Source("chart24.png")
  32. ImageResource chart24();
  33. @Source("table.png")
  34. ImageResource table();
  35. @Source("RepeatHS.png")
  36. ImageResource refresh2();
  37. @Source("NewReportHS.png")
  38. ImageResource NewFolder();
  39. @Source("add16.gif")
  40. ImageResource add16();
  41. @Source("add24.gif")
  42. ImageResource add24();
  43. @Source("add32.gif")
  44. ImageResource add32();
  45. @Source("application_side_list.png")
  46. ImageResource side_list();
  47. @Source("application_form.png")
  48. ImageResource form();
  49. @Source("connect.png")
  50. ImageResource connect();
  51. @Source("user_add.png")
  52. ImageResource user_add();
  53. @Source("user_delete.png")
  54. ImageResource user_delete();
  55. @Source("accordion.gif")
  56. ImageResource accordion();
  57. @Source("add.gif")
  58. ImageResource add();
  59. @Source("delete.gif")
  60. ImageResource delete();
  61. @Source("calendar.gif")
  62. ImageResource calendar();
  63. @Source("menu-show.gif")
  64. ImageResource menu_show();
  65. @Source("list-items.gif")
  66. ImageResource list_items();
  67. @Source("album.gif")
  68. ImageResource album();
  69. @Source("text.png")
  70. ImageResource text();
  71. @Source("plugin.png")
  72. ImageResource plugin();
  73. @Source("music.png")
  74. ImageResource music();
  75. @Source("RefreshDocViewHS.png")
  76. ImageResource refresh();
  77. @Source("SaveAllHS.png")
  78. ImageResource SaveAll();
  79. @Source("PlayHS.png")
  80. ImageResource Play();
  81. @Source("PauseHS.png")
  82. ImageResource Pause();
  83. @Source("PrimaryKeyHS.png")
  84. ImageResource Key();
  85. @Source("Help.png")
  86. ImageResource Help();
  87. @Source("RestartHS.png")
  88. ImageResource Restart();
  89. @Source("TableHS.png")
  90. ImageResource Grid();
  91. @Source("PieChart3DHS.png")
  92. ImageResource PieChart();
  93. @Source("FormulaEvaluatorHS.png")
  94. ImageResource Formula();
  95. @Source("WarningHS.png")
  96. ImageResource Warning();
  97. @Source("graphhs.png")
  98. ImageResource graph();
  99. @Source("EditInformationHS.png")
  100. ImageResource edit();
  101. @Source("OrganizerHS.png")
  102. ImageResource Category();
  103. @Source("HomeHS.png")
  104. ImageResource Home();
  105. @Source("eps_closedHS.png")
  106. ImageResource email();
  107. @Source("Filter2HS.png")
  108. ImageResource average();
  109. @Source("excel.png")
  110. ImageResource excel();
  111. @Source("user_add.png")
  112. ImageResource addFriend();
  113. @Source("user_delete.png")
  114. ImageResource deleteFriend();
  115. }