blob: 1fd00e70f559c65de7ba61168c7ea14b0cbd3e3b [file] [log] [blame]
package jet_tags;
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.*;
import org.eclipse.egf.common.helper.*;
public class CalleeInjected {
public CalleeInjected() {
//Here is the constructor
// add initialisation of the pattern variables (declaration has been already done).
}
public void generate (Object argument) throws Exception {
InternalPatternContext ctx = (InternalPatternContext)argument;
IQuery.ParameterDescription paramDesc = null;
Map<String, String> queryCtx = null;
paramDesc = new IQuery.ParameterDescription("parameter", "http://www.eclipse.org/emf/2002/Ecore#//EClass");
queryCtx = new HashMap<String, String>();
List<Object> parameterList = QueryHelper.load(ctx, "org.eclipse.egf.pattern.query.EObjectInjectedContextQuery").execute(paramDesc, queryCtx, ctx);
for (Object parameterParameter : parameterList ) {
this.parameter = (org.eclipse.emf.ecore.EClass)parameterParameter;
orchestration((PatternContext)argument);
}
if (ctx.useReporter()){
ctx.getReporter().executionFinished(ctx.getExecutionBuffer().toString(), ctx);
ctx.clearBuffer();}
}
public String orchestration(PatternContext ctx) throws Exception {
InternalPatternContext ictx = (InternalPatternContext)ctx;
int executionIndex = ictx.getExecutionBuffer().length();
method_body(ictx.getBuffer(), ictx);
String loop = ictx.getBuffer().toString();
if (ictx.useReporter()){
ictx.getExecutionBuffer().append(ictx.getBuffer().substring(ictx.getExecutionCurrentIndex()));
ictx.setExecutionCurrentIndex(0);
Map<String, Object> parameterValues = new HashMap<String, Object>();
parameterValues.put("parameter", this.parameter);
String outputWithCallBack = ictx.getExecutionBuffer().substring(executionIndex);
ictx.getReporter().loopFinished(loop, outputWithCallBack, ictx, parameterValues);
ictx.clearBuffer();}
return loop;
}
protected void method_body(final StringBuffer out, final PatternContext ctx)throws Exception
{
out.append("CalleeInjected : ");
out.append("className=");
if (parameter != null)
out.append(parameter.getName());
out.append("\n");
}
protected org.eclipse.emf.ecore.EClass parameter;
public void set_parameter(org.eclipse.emf.ecore.EClass parameter) {
this.parameter = parameter;
}
}