
org.eweb4j.config.bean.ORMXmlFiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eweb4j-all Show documentation
Show all versions of eweb4j-all Show documentation
easy web framework for java, full-stack
The newest version!
package org.eweb4j.config.bean;
import java.util.ArrayList;
import java.util.List;
public class ORMXmlFiles {
private List path = new ArrayList();
public List getPath() {
if (path.isEmpty())
path.add("");
return path;
}
public void setPath(List path) {
this.path = path;
}
@Override
public String toString() {
return "ORMXmlFiles [path=" + path + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy