forked from demo/example
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
492 B
27 lines
492 B
6 years ago
|
package com.fr.data;
|
||
|
|
||
|
public class XMLColumnNameType4Demo {
|
||
|
private int type = -1;
|
||
|
private String name = null;
|
||
|
|
||
|
public XMLColumnNameType4Demo(String name, int type) {
|
||
|
this.name = name;
|
||
|
this.type = type;
|
||
|
}
|
||
|
|
||
|
public String getName() {
|
||
|
return name;
|
||
|
}
|
||
|
|
||
|
public void setName(String name) {
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
public int getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public void setType(int type) {
|
||
|
this.type = type;
|
||
|
}
|
||
|
}
|