All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eweb4j.config.bean.ORMXmlFiles Maven / Gradle / Ivy

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