Uses of Class
org.eclipse.emf.codegen.jet.JETException

Packages that use JETException
org.eclipse.emf.ant.taskdefs.codegen   
org.eclipse.emf.codegen   
org.eclipse.emf.codegen.ecore.generator   
org.eclipse.emf.codegen.ecore.genmodel.generator   
org.eclipse.emf.codegen.ecore.genmodel.impl   
org.eclipse.emf.codegen.jet   
org.eclipse.emf.codegen.util   
 

Uses of JETException in org.eclipse.emf.ant.taskdefs.codegen
 

Methods in org.eclipse.emf.ant.taskdefs.codegen that throw JETException
protected  JETEmitter JETEmitterTask.createJETEmitter()
           
protected  void JETEmitterTask.invokeEmitter(JETEmitter emitter)
           
 

Uses of JETException in org.eclipse.emf.codegen
 

Methods in org.eclipse.emf.codegen that throw JETException
static List CodeGen.getClasspathPaths(String pluginID)
          Deprecated. As of EMF 2.1.0, moved to CodeGenUtil.
static void CodeGen.addClasspathEntries(Collection classpathEntries, String variableName, String pluginID)
          Deprecated. As of EMF 2.1.0, moved to CodeGenUtil.
 

Uses of JETException in org.eclipse.emf.codegen.ecore.generator
 

Methods in org.eclipse.emf.codegen.ecore.generator that throw JETException
protected  void AbstractGeneratorAdapter.addClasspathEntries(JETEmitter jetEmitter)
          Override this to add classpath variables to the JETEmitter.
 

Uses of JETException in org.eclipse.emf.codegen.ecore.genmodel.generator
 

Methods in org.eclipse.emf.codegen.ecore.genmodel.generator that throw JETException
protected  void GenBaseGeneratorAdapter.addClasspathEntries(JETEmitter jetEmitter)
          Adds the plug-ins required for GenModel/Ecore-based templates to the JETEmitter's classpath.
 

Uses of JETException in org.eclipse.emf.codegen.ecore.genmodel.impl
 

Methods in org.eclipse.emf.codegen.ecore.genmodel.impl that throw JETException
protected  void GenModelImpl.addClasspathEntries(JETEmitter jetEmitter)
          Deprecated. In EMF 2.2, a GeneratorAdapter should be used to implement code generation. AbstractGeneratorAdapter provides an equivalent to this method. This method will be removed after 2.2.
protected  int GenBaseImpl.GIFEmitter.getContents(byte[] content, String gifFile)
          Deprecated.  
 

Uses of JETException in org.eclipse.emf.codegen.jet
 

Methods in org.eclipse.emf.codegen.jet that throw JETException
 void JETReader.stackStream(String locationURI, InputStream iStream, String encoding)
           
 void JETReader.stackStream(String baseURI, String locationURI, InputStream iStream, String encoding)
          Stack a stream for parsing
 String JETReader.parseToken(boolean quoted)
          Parse a space delimited token.
protected  void JETReader.parseAttributeValue(HashMap into)
          Parse an attribute/value pair, and store it in provided hash table.
 HashMap JETReader.parseTagAttributesBean()
          Parse some tag attributes for Beans.
 HashMap JETReader.parseTagAttributes()
          Parse some tag attributes.
protected  void JETParser.flushCharData()
           
 void JETParser.parse()
           
 void JETParser.parse(String until)
           
 void JETParser.parse(String until, Class[] accept)
           
 void JETParser.Action.execute()
           
 void JETParser.DelegatingListener.doAction()
           
 void JETParser.DelegatingListener.beginPageProcessing()
           
 void JETParser.DelegatingListener.endPageProcessing()
           
 void JETParser.DelegatingListener.handleDirective(String directive, JETMark start, JETMark stop, Map attrs)
           
 void JETParser.DelegatingListener.handleScriptlet(JETMark start, JETMark stop, Map attrs)
           
 void JETParser.DelegatingListener.handleExpression(JETMark start, JETMark stop, Map attrs)
           
 void JETParser.DelegatingListener.handleCharData(char[] chars)
           
 boolean JETParser.Scriptlet.accept(JETParseEventListener listener, JETReader reader, JETParser parser)
           
 boolean JETParser.Expression.accept(JETParseEventListener listener, JETReader reader, JETParser parser)
           
 boolean JETParser.QuoteEscape.accept(JETParseEventListener listener, JETReader reader, JETParser parser)
           
 boolean JETParser.Directive.accept(JETParseEventListener listener, JETReader reader, JETParser parser)
           
 void JETParseEventListener.beginPageProcessing()
           
 void JETParseEventListener.handleDirective(String directive, JETMark start, JETMark stop, Map attributes)
           
 void JETParseEventListener.handleExpression(JETMark start, JETMark stop, Map attributes)
           
 void JETParseEventListener.handleCharData(char[] chars)
           
 void JETParseEventListener.endPageProcessing()
           
 void JETParseEventListener.handleScriptlet(JETMark start, JETMark stop, Map attributes)
           
 void JETEmitter.initialize(IProgressMonitor progressMonitor)
          Compiles the template to set the method will be invoked to generate template results.
 void JETEmitter.initialize(Monitor progressMonitor)
          Compiles the template to set the method will be invoked to generate template results.
 void JETEmitter.addVariable(String variableName, String pluginID)
          Registers the specified classpath variable in the workspace and adds a classpath entry to the classpath entry list.
 String JETEmitter.generate(IProgressMonitor progressMonitor, Object[] arguments)
          Invokes the emitter method on the compiled template and returns the result.
 String JETEmitter.generate(Monitor progressMonitor, Object[] arguments)
          Invokes the emitter method on the compiled template and returns the result.
 boolean JETCoreElement.accept(JETParseEventListener listener, JETReader reader, JETParser parser)
          Return true if the input contained the sequence that matched the action corresponding to this core tag.
 void JETCompiler.handleDirective(String directive, JETMark start, JETMark stop, Map attributes)
           
 void JETCompiler.handleExpression(JETMark start, JETMark stop, Map attributes)
           
 void JETCompiler.handleScriptlet(JETMark start, JETMark stop, Map attributes)
           
 void JETCompiler.handleCharData(char[] chars)
           
 void JETCompiler.addGenerator(JETGenerator gen)
           
 void JETCompiler.addCharDataGenerator(char[] chars)
           
 void JETCompiler.doAddCharDataGenerator(char[] chars)
           
 void JETCompiler.endPageProcessing()
           
 void JETCompiler.parse()
           
protected  void JETCompiler.parse(JETCoreElement[] coreElements, Class[] accept)
           
 void JETCompiler.generate(OutputStream oStream)
           
 void JETCompiler.generate(Writer writer)
           
static InputStream JETCompiler.openStream(String locationURI)
           
 

Constructors in org.eclipse.emf.codegen.jet that throw JETException
JETReader(String baseURI, String locationURI, InputStream inputStream, String encoding)
           
JETReader(String locationURI, InputStream inputStream, String encoding)
           
JETEmitter.MyBaseJETCompiler(String templateURI, ClassLoader classLoader)
           
JETEmitter.MyBaseJETCompiler(String templateURI, String encoding, ClassLoader classLoader)
           
JETEmitter.MyBaseJETCompiler(String[] templateURIPath, String relativeTemplateURI, ClassLoader classLoader)
           
JETEmitter.MyBaseJETCompiler(String[] templateURIPath, String relativeTemplateURI, String encoding, ClassLoader classLoader)
           
JETEmitter.MyJETCompiler(String templateURI)
           
JETEmitter.MyJETCompiler(String templateURI, String encoding)
           
JETEmitter.MyJETCompiler(String[] templateURIPath, String relativeTemplateURI)
           
JETEmitter.MyJETCompiler(String[] templateURIPath, String relativeTemplateURI, String encoding)
           
JETCompiler(String templateURI)
           
JETCompiler(String templateURI, String encoding)
           
JETCompiler(String templateURI, InputStream inputStream, String encoding)
           
JETCompiler(String[] templateURIPath, String relativeTemplateURI)
           
JETCompiler(String[] templateURIPath, String relativeTemplateURI, String encoding)
           
 

Uses of JETException in org.eclipse.emf.codegen.util
 

Methods in org.eclipse.emf.codegen.util that throw JETException
protected  int GIFEmitter.getContents(byte[] content, String gifFile)
           
static List CodeGenUtil.getClasspathPaths(String pluginID)
          Deprecated. in 2.2. Please use CodeGenUtil.EclipseUtil.getClasspathPaths(java.lang.String) instead.
static void CodeGenUtil.addClasspathEntries(Collection classpathEntries, String variableName, String pluginID)
          Deprecated. in 2.2. Please use CodeGenUtil.EclipseUtil.addClasspathEntries(Collection, String, String) instead.
static List CodeGenUtil.EclipseUtil.getClasspathPaths(String pluginID)
           
static void CodeGenUtil.EclipseUtil.addClasspathEntries(Collection classpathEntries, String variableName, String pluginID)
           
static void CodeGenUtil.EclipseUtil.addClasspathEntries(Collection classpathEntries, String pluginID)
           
 


Copyright 2001-2006 IBM Corporation and others.
All Rights Reserved.