blob: ec82af40a33638a1247b6255ddff2a4f5e47d704 [file] [log] [blame]
package emf.docgen.html;
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 EObjectDocGen extends object.docgen.html.ObjectDocGen {
protected static String nl;
public static synchronized EObjectDocGen create(String lineSeparator)
{
nl = lineSeparator;
EObjectDocGen result = new EObjectDocGen();
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;
protected final String TEXT_3 = NL;
public EObjectDocGen()
{
//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_2);
stringBuffer.append(TEXT_3);
return stringBuffer.toString();
}
public String orchestration(PatternContext ctx) throws Exception {
InternalPatternContext ictx = (InternalPatternContext)ctx;
int index = 0, executionIndex = ictx.getExecutionBuffer().length();
method_body(ictx.getBuffer(), ictx);
String loop = ictx.getBuffer().toString();
return loop;
}
protected org.eclipse.emf.ecore.EObject _element = null;
protected void method_body(final StringBuffer stringBuffer, final PatternContext ctx)throws Exception {
stringBuffer.append(TEXT_1);
}
}