|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JET2Writer | |
---|---|
org.eclipse.jet | Defines core interfaces for executing JET transformations and templates. |
org.eclipse.jet.taglib | Interfaces and abstract classes for implement custom JET tags. |
org.eclipse.jet.taglib.java | Define utility functions for interacting with the Standard JET Java tags. |
org.eclipse.jet.taglib.workspace | Defines JET workspace actions that custom tags may perform as part of a JET transformation. |
org.eclipse.jet.transform | Defines JET transformation related interfaces. |
Uses of JET2Writer in org.eclipse.jet |
---|
Classes in org.eclipse.jet that implement JET2Writer | |
class |
BodyContentWriter
Standard implementation of JET2Writer |
Methods in org.eclipse.jet that return JET2Writer | |
JET2Writer |
JET2Writer.newNestedContentWriter()
Create a writer for handling nested content. |
JET2Writer |
JET2Writer.getParentWriter()
Return the parent of this writer, if it was created via JET2Writer.newNestedContentWriter() . |
JET2Writer |
BodyContentWriter.newNestedContentWriter()
|
JET2Writer |
BodyContentWriter.getParentWriter()
|
Methods in org.eclipse.jet with parameters of type JET2Writer | |
void |
JET2Writer.write(JET2Writer bodyContent)
Write the contents of the passed writer to this writer. |
void |
JET2Template.generate(JET2Context context,
JET2Writer out)
Execute the template against the input contained in the JET2Context ,
and writing the result to the JET2Writer . |
void |
IWriterListener.finalizeContent(JET2Writer writer,
java.lang.Object file)
Perform any finalization of the content in the writer. |
void |
IWriterListener.postCommitContent(JET2Writer writer,
java.lang.Object file)
Perform any post processing on the committed file based on content written. |
void |
BodyContentWriter.write(JET2Writer bodyContent)
|
Uses of JET2Writer in org.eclipse.jet.taglib |
---|
Methods in org.eclipse.jet.taglib that return JET2Writer | |
JET2Writer |
RuntimeTagElement.getWriter()
Return the writer passed to RuntimeTagElement.doStart(JET2Context, JET2Writer) . |
JET2Writer |
CustomTag.getOut()
Return the writer to which the tag will write. |
JET2Writer |
AbstractCustomTag.getOut()
|
Methods in org.eclipse.jet.taglib with parameters of type JET2Writer | |
void |
UserRegionHelper.finalizeContent(JET2Writer writer,
java.lang.Object file)
|
void |
UserRegionHelper.postCommitContent(JET2Writer writer,
java.lang.Object file)
|
static void |
UserRegionHelper.markInitialCode(JET2Writer out,
int initialCodeStart,
int initialCodeEnd,
java.lang.String unmodifiedMarker)
Mark the initial code portion of the user region. |
static void |
UserRegionHelper.markInitialCode(JET2Writer out,
int initialCodeStart,
int initialCodeEnd)
Mark the initial code portion of the user region. |
static void |
UserRegionHelper.markUserRegion(JET2Writer out,
int regionStart,
int regionEnd)
Mark the user region on the output writer |
void |
RuntimeTagElement.doStart(JET2Context context,
JET2Writer out)
Perform any actions associated with the start of the tag element. |
void |
RuntimeTagElement.handleBodyContent(JET2Writer bodyContent)
Handle the body content of the tag element. |
void |
OtherTag.doEnd(TagInfo tc,
JET2Context context,
JET2Writer out)
Perform actions required after the tag body has been evaluted. |
void |
OtherTag.doStart(TagInfo tc,
JET2Context context,
JET2Writer out)
Perform actions required prior to the tag body evaluation. |
void |
OtherTag.handleBodyContent(TagInfo tc,
JET2Context context,
JET2Writer out,
JET2Writer bodyContent)
Re-write the tag body. |
void |
MarkerHelper.finalizeContent(JET2Writer writer,
java.lang.Object file)
|
void |
MarkerHelper.postCommitContent(JET2Writer writer,
java.lang.Object file)
|
static void |
MarkerHelper.createMarkerOnWriter(JET2Writer writer,
int start,
int end,
java.lang.String description,
TagInfo tagInfo,
java.lang.String templatePath)
|
void |
EmptyTag.doAction(TagInfo td,
JET2Context context,
JET2Writer out)
Perform the action for the empty tag. |
void |
CustomTag.setOut(JET2Writer out)
Set the writer to which the tag will write. |
void |
ContainerTag.doBeforeBody(TagInfo td,
JET2Context context,
JET2Writer out)
Perform processing before the tags body is processed. |
void |
ContainerTag.doAfterBody(TagInfo td,
JET2Context context,
JET2Writer out)
Perform processing after the tag body is processed. |
void |
ContainerTag.setBodyContent(JET2Writer bodyContent)
Passes the tag handler a writer containing the processed contents of the tag body. |
void |
AbstractIteratingTag.doBeforeBody(TagInfo td,
JET2Context context,
JET2Writer out)
Default implementation of ContainerTag.doBeforeBody(TagInfo, JET2Context, JET2Writer)
that writes a delimiter if set. |
void |
AbstractIteratingTag.doAfterBody(TagInfo td,
JET2Context context,
JET2Writer out)
Default implementation of ContainerTag.doAfterBody(TagInfo, JET2Context, JET2Writer) that does nothing. |
void |
AbstractCustomTag.setOut(JET2Writer out)
|
void |
AbstractContainerTag.setBodyContent(JET2Writer bodyContent)
Default implementation of ContainerTag.setBodyContent(JET2Writer) that writes
body content to the tag's output. |
void |
AbstractContainerTag.doAction(TagInfo td,
JET2Context context,
JET2Writer out)
Default implementation of EmptyTag.doAction(TagInfo, JET2Context, JET2Writer) that simply
calls ContainerTag.doBeforeBody(TagInfo, JET2Context, JET2Writer) and then
ContainerTag.doAfterBody(TagInfo, JET2Context, JET2Writer) .
|
void |
AbstractConditionalTag.doBeforeBody(TagInfo td,
JET2Context context,
JET2Writer out)
Default version of ContainerTag.doBeforeBody(TagInfo, JET2Context, JET2Writer) that does nothing. |
void |
AbstractConditionalTag.doAfterBody(TagInfo td,
JET2Context context,
JET2Writer out)
Default version of {#link ContainerTag.doAfterBody(TagInfo, JET2Context, JET2Writer) that does nothing. |
Uses of JET2Writer in org.eclipse.jet.taglib.java |
---|
Methods in org.eclipse.jet.taglib.java with parameters of type JET2Writer | |
static org.eclipse.emf.codegen.util.ImportManager |
JavaImportsUtil.getImportManager(JET2Writer writer)
Deprecated. Use JavaActionsUtil.getImportManager(JET2Writer) instead |
static org.eclipse.emf.codegen.util.ImportManager |
JavaActionsUtil.getImportManager(JET2Writer writer)
Return the imports manager installed in the current writer. |
Uses of JET2Writer in org.eclipse.jet.taglib.workspace |
---|
Methods in org.eclipse.jet.taglib.workspace with parameters of type JET2Writer | |
static boolean |
ActionsUtil.writeTextFileFromWriter(IFile file,
boolean replace,
java.lang.String encoding,
boolean derived,
JET2Writer writer,
IProgressMonitor monitor)
Write the file with the specified options from a JET writer. |
Uses of JET2Writer in org.eclipse.jet.transform |
---|
Methods in org.eclipse.jet.transform with parameters of type JET2Writer | |
void |
TransformContextExtender.execute(java.lang.String templatePath,
JET2Writer writer)
Execute the named template, writing all template output to the passed writer. |
void |
TransformContextExtender.execute(java.lang.String templatePath,
boolean useSuper,
JET2Writer writer)
Execute the named template, writing all template output to the passed writer. |
|
Copyright 2006 IBM Corporation and others. All Rights Reserved. |
||||||||||
PREV NEXT | FRAMES NO FRAMES |