java - Is it possible to call a JET file within another JET file? If so please explain how it can be done -


i have jet file generating c++ file. want generate various c++ files out of single jet file.the single jet file should call other jet files within it. possible?

yes can. ws:file tag:

    <ws:file path="" template="" replace="true" /> 

generally done in main.jet file , discouraged in other jet templates, doable. in order use ws tag library in jet template, you'll need use tab lib directive ws library:

<%@taglib prefix="ws" id="org.eclipse.jet.workspacetags" %> 

this directive written top of main.jet default (but not other jet templates) tooling.


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -