From: Robert L. <rle...@us...> - 2007-02-15 12:21:33
|
Update of /cvsroot/ccmtools/ccmtools/test/JavaAssembly/prototype/wamas/Test In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27103/test/JavaAssembly/prototype/wamas/Test Modified Files: I1Adapter.java C1i1Impl.java Log Message: first version of the assembly prototype Index: I1Adapter.java =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/JavaAssembly/prototype/wamas/Test/I1Adapter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** I1Adapter.java 15 Feb 2007 09:51:31 -0000 1.2 --- I1Adapter.java 15 Feb 2007 12:21:21 -0000 1.3 *************** *** 6,24 **** package wamas.Test; ! import java.util.logging.Logger; ! import Components.CCMException; import ccmtools.local.ServiceLocator; ! ! ! public class I1Adapter implements I1 { private Logger logger = ServiceLocator.instance().getLogger(); ! private CCM_I1 localInterface; ! protected I1Adapter() { --- 6,24 ---- package wamas.Test; ! import java.util.logging.Logger; ! import Components.CCMException; import ccmtools.local.ServiceLocator; ! ! ! public class I1Adapter implements I1 { private Logger logger = ServiceLocator.instance().getLogger(); ! private CCM_I1 localInterface; ! protected I1Adapter() { *************** *** 31,44 **** this.localInterface = localInterface; } - - ! public String value() ! throws CCMException { logger.fine(""); return localInterface.value(); } ! ! } --- 31,44 ---- this.localInterface = localInterface; } ! ! ! public String value() ! throws CCMException { logger.fine(""); return localInterface.value(); } ! ! } Index: C1i1Impl.java =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/JavaAssembly/prototype/wamas/Test/C1i1Impl.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** C1i1Impl.java 15 Feb 2007 09:51:31 -0000 1.2 --- C1i1Impl.java 15 Feb 2007 12:21:21 -0000 1.3 *************** *** 2,20 **** * This file was automatically generated by CCM Tools version 0.9.0 * <http://ccmtools.sourceforge.net> ! * * CCM_I1Impl facet implementation. * * // TODO: WRITE YOUR DESCRIPTION HERE ! ! * * @author * @version */ ! package wamas.Test; import Components.CCMException; - ! /** * This class implements a component facet's methods. * --- 2,20 ---- * This file was automatically generated by CCM Tools version 0.9.0 * <http://ccmtools.sourceforge.net> ! * * CCM_I1Impl facet implementation. * * // TODO: WRITE YOUR DESCRIPTION HERE ! ! * * @author * @version */ ! package wamas.Test; import Components.CCMException; ! ! /** * This class implements a component facet's methods. * *************** *** 24,28 **** * @version */ ! public class C1i1Impl implements CCM_I1 { --- 24,28 ---- * @version */ ! public class C1i1Impl implements CCM_I1 { *************** *** 34,52 **** this.component = component; } ! /** Business logic implementations */ ! ! ! public String value() throws CCMException { ! // TODO: IMPLEMENT ME HERE ! ! return ""; ! } } --- 34,51 ---- this.component = component; } ! /** Business logic implementations */ ! ! ! public String value() throws CCMException { ! return this.getClass().getName(); ! } } |