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
Post a Comment