From: Robert L. <rle...@us...> - 2007-02-12 16:01:24
|
Update of /cvsroot/ccmtools/ccmtools/src/ccmtools/parser/assembly In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17108/src/ccmtools/parser/assembly Modified Files: Main.java Log Message: ccm assembly metamodel Index: Main.java =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/src/ccmtools/parser/assembly/Main.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Main.java 12 Feb 2007 14:08:31 -0000 1.2 --- Main.java 12 Feb 2007 16:01:17 -0000 1.3 *************** *** 49,53 **** throw new IllegalStateException("invalid root element: " + root.value.getClass().getName()); ! return (Model) root.value; } } --- 49,55 ---- throw new IllegalStateException("invalid root element: " + root.value.getClass().getName()); ! Model result = (Model) root.value; ! result.postProcessing(); ! return result; } } |