Initial commit.

This commit is contained in:
Achim D. Brucker 2015-06-15 08:55:57 +02:00
parent 5a78371cfd
commit 99e3401b78
1 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,63 @@
/*
* (C) Copyright 2010-2015 SAP SE.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
*/
package eu.aniketos.dasca.js;
public class Item {
private String id;
private String input;
private String exp1;
private String exp2;
private String exp3;
public String getid() {
return id;
}
public void setid(String id) {
this.id = id;
}
public String getInput() {
return input;
}
public void setInput(String input) {
this.input = input;
}
public String getExp1() {
return exp1;
}
public void setExp1(String exp1) {
this.exp1 = exp1;
}
public String getCurrent() {
return exp2;
}
public void setExp2(String exp2) {
this.exp2 = exp2;
}
public String getExp2() {
return exp2;
}
public String getExp3() {
return exp3;
}
public void setExp3(String exp3) {
this.exp3 = exp3;
}
@Override
public String toString() {
return "Item [" + "id=" + id + ",input" + input + ",exp1=" + exp1
+ ",exp2=" + exp2 + ", exp3=" + exp3 + "]";
}
}