01: /*
02: * ChainBuilder ESB
03: * Visual Enterprise Integration
04: *
05: * Copyright (C) 2008 Bostech Corporation
06: *
07: * This program is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU General Public License as published by
09: * the Free Software Foundation; either version 2 of the License, or
10: * (at your option) any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public License
18: * along with this program; if not, write to the Free Software
19: * Foundation, Inc.,59 Temple Place, Suite 330, Boston, MA 02111-1307
20: * USA
21: *
22: *
23: * $Id$
24: */
25:
26: package com.bostechcorp.cbesb.console.client.components;
27:
28: import com.google.gwt.user.client.ui.Image;
29: import com.google.gwt.user.client.ui.PushButton;
30:
31: /**
32: * @author rui.hou
33: *
34: */
35: public class SharedLibraryTableButton extends PushButton {
36:
37: private String SharedLibraryName;
38:
39: private String jarName;
40:
41: private String operation;
42:
43: public SharedLibraryTableButton(String name) {
44: super (name);
45: }
46:
47: public SharedLibraryTableButton(Image upImage) {
48: super (upImage);
49: }
50:
51: public String getJarName() {
52: return jarName;
53: }
54:
55: public void setJarName(String jarName) {
56: this .jarName = jarName;
57: }
58:
59: public String getOperation() {
60: return operation;
61: }
62:
63: public void setOperation(String operation) {
64: this .operation = operation;
65: }
66:
67: public String getSharedLibraryName() {
68: return SharedLibraryName;
69: }
70:
71: public void setSharedLibraryName(String sharedLibraryName) {
72: SharedLibraryName = sharedLibraryName;
73: }
74:
75: }
|