|
From: Teiniker E. <tei...@us...> - 2007-01-17 17:47:12
|
Update of /cvsroot/ccmtools/ccmtools/src/ccmtools/metamodel In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv18519/src/ccmtools/metamodel Modified Files: CcmModelValidator.java Log Message: Bugfix: added '-' in the create_ComponentHome() operations used as the component's implementation enty point. Allowed the 'oneway' keyword for ccmtools IDL Index: CcmModelValidator.java =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/src/ccmtools/metamodel/CcmModelValidator.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CcmModelValidator.java 27 Nov 2006 21:13:20 -0000 1.5 --- CcmModelValidator.java 17 Jan 2007 17:47:09 -0000 1.6 *************** *** 446,455 **** { logger.fine("MOperationDef"); ! if(in.isOneway()) ! { ! addError("'oneway' operations like " + ! in.getDefinedIn().getIdentifier() + "::" + ! in.getIdentifier() + "()'"); ! } validate(in.getIdlType()); for(Iterator i = in.getParameters().iterator(); i.hasNext();) --- 446,455 ---- { logger.fine("MOperationDef"); ! // if(in.isOneway()) ! // { ! // addError("'oneway' operations like " + ! // in.getDefinedIn().getIdentifier() + "::" + ! // in.getIdentifier() + "()'"); ! // } validate(in.getIdlType()); for(Iterator i = in.getParameters().iterator(); i.hasNext();) |