001: package com.bostechcorp.cbesb.console.client;
002:
003: import com.google.gwt.user.client.ui.AbstractImagePrototype;
004: import com.google.gwt.user.client.ui.ImageBundle;
005:
006: public interface ServiceUnitImageBundle extends ImageBundle {
007: //
008: // /**
009: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/available.png
010: // */
011: // public AbstractImagePrototype defaultMenuItem();
012: //
013: // /**
014: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/preferences-desktop.png
015: // */
016: // public AbstractImagePrototype preferences();
017: //
018: // /**
019: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/utilities-system-monitor.png
020: // */
021: // public AbstractImagePrototype statistics();
022: //
023: // /**
024: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/utilities-terminal.png
025: // */
026: // public AbstractImagePrototype log();
027: //
028: // /**
029: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/contact-new.png
030: // */
031: // public AbstractImagePrototype editUser();
032: //
033: // /**
034: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/available.png
035: // */
036: // public AbstractImagePrototype endpoints();
037: //
038: // /**
039: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/emblem-system.png
040: // */
041: // public AbstractImagePrototype components();
042: //
043: // /**
044: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/system-installer.png
045: // */
046: // public AbstractImagePrototype assemblies();
047: //
048: // /**
049: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/dialog-error.png
050: // */
051: // public AbstractImagePrototype errorImage();
052: // /**
053: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/dialog-information.png
054: // */
055: // public AbstractImagePrototype informationImage();
056: // /**
057: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/dialog-warning.png
058: // */
059: // public AbstractImagePrototype warningImage();
060: //
061: // /**
062: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/process-working.png
063: // */
064: // public AbstractImagePrototype processWorking();
065:
066: /**
067: * @gwt.resource com/bostechcorp/cbesb/console/public/images/file.png
068: */
069: public AbstractImagePrototype file();
070:
071: /**
072: * @gwt.resource com/bostechcorp/cbesb/console/public/images/ftp.png
073: */
074: public AbstractImagePrototype ftp();
075:
076: /**
077: * @gwt.resource com/bostechcorp/cbesb/console/public/images/tcpip.png
078: */
079: public AbstractImagePrototype tcpip();
080:
081: /**
082: * @gwt.resource com/bostechcorp/cbesb/console/public/images/jms.png
083: */
084: public AbstractImagePrototype jms();
085:
086: /**
087: * @gwt.resource com/bostechcorp/cbesb/console/public/images/script.png
088: */
089: public AbstractImagePrototype script();
090:
091: /**
092: * @gwt.resource com/bostechcorp/cbesb/console/public/images/cbr.png
093: */
094: public AbstractImagePrototype cbr();
095:
096: /**
097: * @gwt.resource com/bostechcorp/cbesb/console/public/images/sequencer.png
098: */
099: public AbstractImagePrototype sequencer();
100:
101: /**
102: * @gwt.resource com/bostechcorp/cbesb/console/public/images/map.png
103: */
104: public AbstractImagePrototype map();
105:
106: /**
107: * @gwt.resource com/bostechcorp/cbesb/console/public/images/xslt.png
108: */
109: public AbstractImagePrototype xslt();
110:
111: /**
112: * @gwt.resource com/bostechcorp/cbesb/console/public/images/jdbc.png
113: */
114: public AbstractImagePrototype jdbc();
115:
116: /**
117: * @gwt.resource com/bostechcorp/cbesb/console/public/images/customer.png
118: */
119: public AbstractImagePrototype customer();
120:
121: /**
122: * @gwt.resource com/bostechcorp/cbesb/console/public/images/email.png
123: */
124: public AbstractImagePrototype email();
125:
126: /**
127: * @gwt.resource com/bostechcorp/cbesb/console/public/images/external.png
128: */
129: public AbstractImagePrototype external();
130:
131: /**
132: * @gwt.resource com/bostechcorp/cbesb/console/public/images/comment.png
133: */
134: public AbstractImagePrototype comment();
135:
136: /**
137: * @gwt.resource com/bostechcorp/cbesb/console/public/images/parser.png
138: */
139: public AbstractImagePrototype parser();
140:
141: /**
142: * @gwt.resource com/bostechcorp/cbesb/console/public/images/http.png
143: */
144: public AbstractImagePrototype http();
145:
146: /**
147: * @gwt.resource com/bostechcorp/cbesb/console/public/images/etl.png
148: */
149: public AbstractImagePrototype etl();
150:
151: // /**
152: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/tcpip16.ico
153: // */
154: // public AbstractImagePrototype tcpip();
155: //
156: // /**
157: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/ftp.ico
158: // */
159: // public AbstractImagePrototype ftp();
160: //
161: // /**
162: // * @gwt.resource com/bostechcorp/cbesb/console/public/images/Sequencer16.ico
163: // */
164: // public AbstractImagePrototype sequencer();
165: }
|