source: other-projects/FileTransfer-WebSocketPair/ServerActionResponseBundle/org/nbk4/gwt/action/client/ActionType.java@ 31449

Last change on this file since 31449 was 31449, checked in by davidb, 7 years ago

Adding three project folders for Nathan Kelly's 2016/2017 summer project, experimenting with Websockets for File Transfer with GWT and Sencha GXT

File size: 451 bytes
Line 
1package org.nbk4.gwt.action.client;
2
3import java.io.Serializable;
4
5import com.google.gwt.user.client.rpc.IsSerializable;
6
7public enum ActionType implements Serializable, IsSerializable{
8 UPDATE_PROGRESSBAR(0),
9 SHOW_DIALOG(1),
10 SHOW_DIALOG_NORESPONSE(2);
11
12 private int value;
13
14 private ActionType(int value){
15 this.setValue(value);
16 }
17
18 public int getValue() {
19 return value;
20 }
21
22 private void setValue(int value) {
23 this.value = value;
24 }
25}
Note: See TracBrowser for help on using the repository browser.