source: other-projects/FileTransfer-WebSocketPair/ServerActionResponseBundle/org/nbk4/gwt/action/client/ActionProperty.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: 445 bytes
Line 
1package org.nbk4.gwt.action.client;
2
3import java.io.Serializable;
4
5import com.google.gwt.user.client.rpc.IsSerializable;
6
7public class ActionProperty implements Serializable, IsSerializable{
8 public ActionProperty() {}
9
10 public ActionProperty(ActionTypeProperty property, int ID, String label) {
11 this.property = property;
12 this.ID = ID;
13 this.label = label;
14 }
15
16 public ActionTypeProperty property;
17 public int ID;
18 public String label;
19}
Note: See TracBrowser for help on using the repository browser.