diff options
Diffstat (limited to 'plugins/org.eclipse.gmf.graphdef.codegen/templates/attr/Label.javajet')
-rw-r--r-- | plugins/org.eclipse.gmf.graphdef.codegen/templates/attr/Label.javajet | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/org.eclipse.gmf.graphdef.codegen/templates/attr/Label.javajet b/plugins/org.eclipse.gmf.graphdef.codegen/templates/attr/Label.javajet new file mode 100644 index 000000000..8d8582514 --- /dev/null +++ b/plugins/org.eclipse.gmf.graphdef.codegen/templates/attr/Label.javajet @@ -0,0 +1,11 @@ +<%@ jet package="org.eclipse.gmf.graphdef.codegen.templates" class="LabelAttrGenerator" + imports="org.eclipse.gmf.gmfgraph.* org.eclipse.gmf.graphdef.codegen.Dispatcher"%> +<% +Dispatcher.Args args = (Dispatcher.Args) argument; +final Label figureInstance = (Label) args.getFigure(); +final String figureVarName = args.getVariableName(); +final Dispatcher dispatcher = args.getDispatcher(); +%> +<%if (figureInstance.eIsSet(GMFGraphPackage.eINSTANCE.getLabel_Text())) {%> +<%=figureVarName%>.setText("<%=figureInstance.getText()%>"); +<%}%><%=dispatcher.dispatch("Figure", args)%>
\ No newline at end of file |