1 11 package org.eclipse.jface.dialogs; 12 13 36 import org.eclipse.jface.resource.JFaceResources; 37 38 44 public interface IDialogConstants { 45 47 52 public int OK_ID = 0; 53 54 57 public int CANCEL_ID = 1; 58 59 62 public int YES_ID = 2; 63 64 67 public int NO_ID = 3; 68 69 72 public int YES_TO_ALL_ID = 4; 73 74 77 public int SKIP_ID = 5; 78 79 82 public int STOP_ID = 6; 83 84 87 public int ABORT_ID = 7; 88 89 92 public int RETRY_ID = 8; 93 94 97 public int IGNORE_ID = 9; 98 99 102 public int PROCEED_ID = 10; 103 104 107 public int OPEN_ID = 11; 108 109 112 public int CLOSE_ID = 12; 113 114 117 public int DETAILS_ID = 13; 118 119 122 public int BACK_ID = 14; 123 124 127 public int NEXT_ID = 15; 128 129 132 public int FINISH_ID = 16; 133 134 137 public int HELP_ID = 17; 138 139 142 public int SELECT_ALL_ID = 18; 143 144 147 public int DESELECT_ALL_ID = 19; 148 149 152 public int SELECT_TYPES_ID = 20; 153 154 157 public int NO_TO_ALL_ID = 21; 158 159 163 public int INTERNAL_ID = 256; 164 165 169 public int CLIENT_ID = 1024; 170 171 175 public String OK_LABEL = JFaceResources.getString("ok"); 177 180 public String CANCEL_LABEL = JFaceResources.getString("cancel"); 182 185 public String YES_LABEL = JFaceResources.getString("yes"); 187 190 public String NO_LABEL = JFaceResources.getString("no"); 192 195 public String NO_TO_ALL_LABEL = JFaceResources.getString("notoall"); 197 200 public String YES_TO_ALL_LABEL = JFaceResources.getString("yestoall"); 202 205 public String SKIP_LABEL = JFaceResources.getString("skip"); 207 210 public String STOP_LABEL = JFaceResources.getString("stop"); 212 215 public String ABORT_LABEL = JFaceResources.getString("abort"); 217 220 public String RETRY_LABEL = JFaceResources.getString("retry"); 222 225 public String IGNORE_LABEL = JFaceResources.getString("ignore"); 227 230 public String PROCEED_LABEL = JFaceResources.getString("proceed"); 232 235 public String OPEN_LABEL = JFaceResources.getString("open"); 237 240 public String CLOSE_LABEL = JFaceResources.getString("close"); 242 245 public String SHOW_DETAILS_LABEL = JFaceResources.getString("showDetails"); 247 250 public String HIDE_DETAILS_LABEL = JFaceResources.getString("hideDetails"); 252 255 public String BACK_LABEL = JFaceResources.getString("backButton"); 257 260 public String NEXT_LABEL = JFaceResources.getString("nextButton"); 262 265 public String FINISH_LABEL = JFaceResources.getString("finish"); 267 270 public String HELP_LABEL = JFaceResources.getString("help"); 272 276 public int VERTICAL_MARGIN = 7; 277 278 281 public int VERTICAL_SPACING = 4; 282 283 286 public int HORIZONTAL_MARGIN = 7; 287 288 291 public int HORIZONTAL_SPACING = 4; 292 293 296 public int BUTTON_BAR_HEIGHT = 25; 297 298 301 public int LEFT_MARGIN = 20; 302 303 306 public int BUTTON_MARGIN = 4; 307 308 314 public int BUTTON_HEIGHT = 14; 315 316 319 public int BUTTON_WIDTH = 61; 320 321 324 public int INDENT = 21; 325 326 329 public int SMALL_INDENT = 7; 330 331 334 public int ENTRY_FIELD_WIDTH = 200; 335 336 339 public int MINIMUM_MESSAGE_AREA_WIDTH = 300; 340 } 341 | Popular Tags |