<?php
/**
 * {$file}
 * 
 * @author {$author}
 * @package {$project_id}
 */

/**
 * {$name} Generator Plugin
 * 
 * @access public
 * @author {$author}
 * @package {$project_id}
 */
class {$project_id}_Plugin_Generator_{$name} extends Ethna_Plugin_Generator
{
	/**
	 * {$name} ジェネレータを生成する
	 * 
	 * @access public
	 * @param $arg1 mixed 引数1
	 */
	function generate($arg1)
	{
		// TODO: 生成処理
	}
}
?>