blob: 7202f57b0bae3818cdc58fc8e7beba56f2f8125d [file] [log] [blame]
//Generated with EGF 1.6.0.201901231006
package inheritance_2;
import org.eclipse.egf.common.helper.*;
import java.util.*;
import org.eclipse.emf.ecore.*;
import org.eclipse.egf.model.pattern.*;
import org.eclipse.egf.pattern.execution.*;
import org.eclipse.egf.pattern.query.*;
public class parent {
protected static String nl;
public static synchronized parent create(String lineSeparator) {
nl = lineSeparator;
parent result = new parent();
nl = null;
return result;
}
public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
protected final String TEXT_1 = "fromParent" + NL;
protected final String TEXT_2 = NL;
public parent() {
//Here is the constructor
StringBuffer stringBuffer = new StringBuffer();
// add initialisation of the pattern variables (declaration has been already done).
}
public String generate(Object argument) throws Exception {
final StringBuffer stringBuffer = new StringBuffer();
InternalPatternContext ctx = (InternalPatternContext) argument;
Map<String, String> queryCtx = null;
IQuery.ParameterDescription paramDesc = null;
Node.Container currentNode = ctx.getNode();
{
ctx.setNode(new Node.Container(currentNode, getClass()));
orchestration(ctx);
}
ctx.setNode(currentNode);
if (ctx.useReporter()) {
ctx.getReporter().executionFinished(OutputManager.computeExecutionOutput(ctx), ctx);
}
stringBuffer.append(TEXT_2);
stringBuffer.append(TEXT_2);
return stringBuffer.toString();
}
public String orchestration(PatternContext ctx) throws Exception {
InternalPatternContext ictx = (InternalPatternContext) ctx;
method_setVariables(new StringBuffer(), ictx);
method_body(new StringBuffer(), ictx);
method_putVariablesInContesxt(new StringBuffer(), ictx);
return null;
}
protected java.lang.String targetFile = null;
public void set_targetFile(java.lang.String object) {
this.targetFile = object;
}
public Map<String, Object> getParameters() {
final Map<String, Object> parameters = new HashMap<String, Object>();
return parameters;
}
protected void method_body(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
stringBuffer.append(TEXT_1);
InternalPatternContext ictx = (InternalPatternContext) ctx;
new Node.DataLeaf(ictx.getNode(), getClass(), "body", stringBuffer.toString());
}
protected void method_setVariables(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
targetFile = null;
InternalPatternContext ictx = (InternalPatternContext) ctx;
new Node.DataLeaf(ictx.getNode(), getClass(), "setVariables", stringBuffer.toString());
}
protected void method_putVariablesInContesxt(final StringBuffer stringBuffer, final PatternContext ctx)
throws Exception {
ctx.setValue("targetFile", targetFile);
InternalPatternContext ictx = (InternalPatternContext) ctx;
new Node.DataLeaf(ictx.getNode(), getClass(), "putVariablesInContesxt", stringBuffer.toString());
}
}