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

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

// (c) 2018 uchicom
package com.uchicom.repty.dto;

import java.util.Map;

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

	/** リソース. */
	private Resource resource;

	/** 描画マップ. */
	private Map drawMap;

	public Resource getResource() {
		return resource;
	}

	public void setResource(Resource resource) {
		this.resource = resource;
	}

	public Map getDrawMap() {
		return drawMap;
	}

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

	/**
	 * このオブジェクトを表す文字列を返します.
	 * 
	 * @return このオブジェクトを表す文字列
	 */
	@Override
	public String toString() {
		return "Template [spec=" + resource + ", drawMap=" + drawMap + "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy