mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 17:53:14 +00:00
メタデータのモデル作成 WIP
This commit is contained in:
parent
bc24ec45af
commit
6adcbf81c6
|
@ -0,0 +1,37 @@
|
||||||
|
package one.nem.lacerta.processor.model;
|
||||||
|
|
||||||
|
public class XmlMetaPageModel {
|
||||||
|
|
||||||
|
int index;
|
||||||
|
String filename;
|
||||||
|
|
||||||
|
// Constructor
|
||||||
|
|
||||||
|
public XmlMetaPageModel() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public XmlMetaPageModel(int index, String filename) {
|
||||||
|
this.index = index;
|
||||||
|
this.filename = filename;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Getter
|
||||||
|
|
||||||
|
public int getIndex() {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFilename() {
|
||||||
|
return filename;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Setter
|
||||||
|
|
||||||
|
public void setIndex(int index) {
|
||||||
|
this.index = index;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFilename(String filename) {
|
||||||
|
this.filename = filename;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user