issues/91 - enum in model commented out by default

This commit is contained in:
Robert Blair 2013-11-27 18:03:57 -08:00
parent 3a8928f869
commit 830ad87fcb

View File

@ -12,7 +12,7 @@ public class {{classname}} {
private {{{datatype}}} {{name}} = {{{defaultValue}}}; private {{{datatype}}} {{name}} = {{{defaultValue}}};
{{#allowableValues}}{{#min}} // range from {{min}} to {{max}} {{#allowableValues}}{{#min}} // range from {{min}} to {{max}}
{{/min}} {{/min}}
{{^min}}public enum {{name}}Enum { {{#values}} {{.}}, {{/values}} }; //{{^min}}public enum {{name}}Enum { {{#values}} {{.}}, {{/values}} };
{{/min}} {{/min}}
{{/allowableValues}} {{/allowableValues}}