1 5 package xdoclet.modules.webwork; 6 7 import xdoclet.*; 8 9 20 public class WebWorkConfigPropertiesSubTask extends TemplateSubTask 21 { 22 protected static String DEFAULT_TEMPLATE_FILE = "resources/webwork_views.xdt"; 23 24 protected static String GENERATED_FILE_NAME = "views.properties"; 25 26 29 public WebWorkConfigPropertiesSubTask() 30 { 31 setTemplateURL(getClass().getResource(DEFAULT_TEMPLATE_FILE)); 32 setDestinationFile(GENERATED_FILE_NAME); 33 addOfType("webwork.action.Action"); 34 } 35 36 } 37 | Popular Tags |