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

com.uchicom.repty.dto.Template Maven / Gradle / Ivy

package com.uchicom.repty.dto;

import java.util.Map;

/**
 * テンプレート.
 * @author hex
 *
 */
public class Template {

	private String name;
	private Spec spec;

	private Map drawMap;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Spec getSpec() {
		return spec;
	}

	public void setSpec(Spec spec) {
		this.spec = spec;
	}

	public Map getDrawMap() {
		return drawMap;
	}

	public void setDrawMap(Map drawMap) {
		this.drawMap = drawMap;
	}

	@Override
	public String toString() {
		return "Template [name=" + name + ", spec=" + spec + ", draws=" + drawMap + "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy