/******************************************************************************* * Copyright © 2011, 2013 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * *******************************************************************************/ package org.eclipse.edt.gen.java.templates; import org.eclipse.edt.gen.java.Context; import org.eclipse.edt.mof.codegen.api.TabbedWriter; import org.eclipse.edt.mof.egl.DynamicAccess; import org.eclipse.edt.mof.egl.Expression; public class DynamicAccessTemplate extends JavaTemplate { public void genAssignment(DynamicAccess expr, Context ctx, TabbedWriter out, Expression arg1, String arg2) { out.print("org.eclipse.edt.runtime.java.eglx.lang.EAny.ezeSet("); ctx.invoke(genExpression, expr.getExpression(), ctx, out); out.print(", "); ctx.invoke(genExpression, expr.getAccess(), ctx, out); out.print(", "); // if we are doing some type of complex assignment, we need to place that in the argument if (arg2.length() > 3 && arg2.indexOf("=") > 1) { ctx.invoke(genExpression, expr, ctx, out); out.print(arg2.substring(0, arg2.indexOf("=")) + arg2.substring(arg2.indexOf("=") + 1)); } ctx.invoke(genExpression, arg1, ctx, out); out.print(")"); } public void genExpression(DynamicAccess expr, Context ctx, TabbedWriter out) { out.print("org.eclipse.edt.runtime.java.eglx.lang.EAny.ezeGet("); ctx.invoke(genExpression, expr.getExpression(), ctx, out); out.print(", "); ctx.invoke(genExpression, expr.getAccess(), ctx, out); out.print(")"); } }