comparison dwtx/jface/text/templates/Template.d @ 145:02cd5f1224d3

...
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:31:00 +0200
parents b6bad70d540a
children 75302ef3f92f
comparison
equal deleted inserted replaced
144:16a71f577815 145:02cd5f1224d3
71 /** 71 /**
72 * Creates a copy of a template. 72 * Creates a copy of a template.
73 * 73 *
74 * @param template the template to copy 74 * @param template the template to copy
75 */ 75 */
76 public this(Template template) { 76 public this(Template template_) {
77 this(template.getName(), template.getDescription(), template.getContextTypeId(), template.getPattern(), template.isAutoInsertable()); 77 this(template_.getName(), template_.getDescription(), template_.getContextTypeId(), template_.getPattern(), template_.isAutoInsertable());
78 } 78 }
79 79
80 /** 80 /**
81 * Creates a template. 81 * Creates a template.
82 * 82 *