
org.eweb4j.config.bean.Properties 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 Properties {
private List file = new ArrayList();
public List getFile() {
return file;
}
public void setFile(List file) {
this.file = file;
}
@Override
public String toString() {
return "Properties [file=" + file + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy