add param dialog to app
This commit is contained in:
parent
cdda6ee32c
commit
3976750f75
11 changed files with 789 additions and 96 deletions
|
|
@ -0,0 +1,14 @@
|
|||
package btools.routingapp;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class RoutingParam implements Serializable {
|
||||
public String name;
|
||||
public String description;
|
||||
public String type;
|
||||
public String value;
|
||||
|
||||
public String toString() {
|
||||
return "RoutingParam " + name + " = " + value +" type: " + type + " txt: " + description;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue