blob: 45902479ebb7bc7acd4c6fc8fa07e8ce54c51b42 [file] [log] [blame]
package egf.uc1_2.pattern.parent;
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 ParentPattern
{
protected static String nl;
public static synchronized ParentPattern create(String lineSeparator)
{
nl = lineSeparator;
ParentPattern result = new ParentPattern();
nl = null;
return result;
}
public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
protected final String TEXT_1 = "//default content";
protected final String TEXT_2 = NL + "Hello ";
protected final String TEXT_3 = " from my parent";
protected final String TEXT_4 = NL;
protected final String TEXT_5 = NL;
public ParentPattern()
{
//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;
orchestration(ctx);
if (ctx.useReporter()){
ctx.getReporter().executionFinished(ctx.getExecutionBuffer().toString(), ctx);
ctx.clearBuffer();}
stringBuffer.append(TEXT_4);
stringBuffer.append(TEXT_5);
return stringBuffer.toString();
}
public String orchestration(PatternContext ctx) throws Exception {
InternalPatternContext ictx = (InternalPatternContext)ctx;
int index = 0, executionIndex = ictx.getExecutionBuffer().length();
method_sayHello(ictx.getBuffer(), ictx);
method_sayFromParent(ictx.getBuffer(), ictx);
String loop = ictx.getBuffer().toString();
return loop;
}
protected void method_body(final StringBuffer stringBuffer, final PatternContext ctx)throws Exception {
stringBuffer.append(TEXT_1);
}
protected void method_sayHello(final StringBuffer stringBuffer, final PatternContext ctx)throws Exception {
stringBuffer.append(TEXT_2);
}
protected void method_sayFromParent(final StringBuffer stringBuffer, final PatternContext ctx)throws Exception {
stringBuffer.append(TEXT_3);
}
}