From: Robert L. <rle...@us...> - 2007-02-15 16:46:50
|
Update of /cvsroot/ccmtools/ccmtools/src/ccmtools/generator/java/templates/jet In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv1748/src/ccmtools/generator/java/templates/jet Modified Files: ComponentDefAssemblyClass.jet Log Message: Java assemblies Index: ComponentDefAssemblyClass.jet =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/src/ccmtools/generator/java/templates/jet/ComponentDefAssemblyClass.jet,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ComponentDefAssemblyClass.jet 15 Feb 2007 13:18:37 -0000 1.1 --- ComponentDefAssemblyClass.jet 15 Feb 2007 16:46:42 -0000 1.2 *************** *** 15,18 **** --- 15,19 ---- import Components.CCMException; + import Components.CCMExceptionReason; import Components.SessionContext; *************** *** 24,31 **** * Additionally, session component callback methods must be implemented. * - * // TODO: WRITE YOUR DESCRIPTION HERE ! - * - * @author - * @version */ public class <%=component.getIdentifier()%>Impl --- 25,28 ---- *************** *** 60,63 **** --- 57,69 ---- } %> + + <% + for(Iterator i=component.getAssemblyAttributeDeclarations(); i.hasNext();) + { + %> + <%=i.next().toString()%> + <% + } + %> public <%=component.generateCcmIdentifier()%>_Context ctx; |