01: package com.bostechcorp.cbesb.console.client;
02:
03: import com.google.gwt.user.client.ui.AbstractImagePrototype;
04: import com.google.gwt.user.client.ui.ImageBundle;
05:
06: public interface ConsoleImageBundle extends ImageBundle {
07: /**
08: * @gwt.resource com/bostechcorp/cbesb/console/public/images/available.png
09: */
10: public AbstractImagePrototype defaultMenuItem();
11:
12: /**
13: * @gwt.resource com/bostechcorp/cbesb/console/public/images/preferences-desktop.png
14: */
15: public AbstractImagePrototype preferences();
16:
17: /**
18: * @gwt.resource com/bostechcorp/cbesb/console/public/images/utilities-system-monitor.png
19: */
20: public AbstractImagePrototype statistics();
21:
22: /**
23: * @gwt.resource com/bostechcorp/cbesb/console/public/images/utilities-terminal.png
24: */
25: public AbstractImagePrototype log();
26:
27: /**
28: * @gwt.resource com/bostechcorp/cbesb/console/public/images/contact-new.png
29: */
30: public AbstractImagePrototype editUser();
31:
32: /**
33: * @gwt.resource com/bostechcorp/cbesb/console/public/images/available.png
34: */
35: public AbstractImagePrototype endpoints();
36:
37: /**
38: * @gwt.resource com/bostechcorp/cbesb/console/public/images/emblem-system.png
39: */
40: public AbstractImagePrototype components();
41:
42: /**
43: * @gwt.resource com/bostechcorp/cbesb/console/public/images/system-installer.png
44: */
45: public AbstractImagePrototype assemblies();
46:
47: /**
48: * @gwt.resource com/bostechcorp/cbesb/console/public/images/dialog-error.png
49: */
50: public AbstractImagePrototype errorImage();
51:
52: /**
53: * @gwt.resource com/bostechcorp/cbesb/console/public/images/dialog-information.png
54: */
55: public AbstractImagePrototype informationImage();
56:
57: /**
58: * @gwt.resource com/bostechcorp/cbesb/console/public/images/dialog-warning.png
59: */
60: public AbstractImagePrototype warningImage();
61:
62: /**
63: * @gwt.resource com/bostechcorp/cbesb/console/public/images/process-working.png
64: */
65: public AbstractImagePrototype processWorking();
66:
67: /**
68: * @gwt.resource com/bostechcorp/cbesb/console/public/images/strart-operation.gif
69: */
70: public AbstractImagePrototype startButton();
71:
72: /**
73: * @gwt.resource com/bostechcorp/cbesb/console/public/images/shutdown-operation.gif
74: */
75: public AbstractImagePrototype shutdownButton();
76:
77: /**
78: * @gwt.resource com/bostechcorp/cbesb/console/public/images/strartunable-operation.gif
79: */
80: public AbstractImagePrototype startUnableButton();
81:
82: /**
83: * @gwt.resource com/bostechcorp/cbesb/console/public/images/shutdownunable-operation.gif
84: */
85: public AbstractImagePrototype shutdownUnableButton();
86:
87: /**
88: * @gwt.resource com/bostechcorp/cbesb/console/public/images/cycle-operation.gif
89: */
90: public AbstractImagePrototype cycleButton();
91:
92: }
|