From: Robert L. <rle...@us...> - 2007-02-15 09:51:37
|
Update of /cvsroot/ccmtools/ccmtools/test/JavaAssembly/prototype/wamas/Test In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv1208/test/JavaAssembly/prototype/wamas/Test Modified Files: I1Adapter.java C1i1Impl.java I1.java Log Message: empty prototype Index: I1.java =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/JavaAssembly/prototype/wamas/Test/I1.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** I1.java 15 Feb 2007 09:27:24 -0000 1.1 --- I1.java 15 Feb 2007 09:51:31 -0000 1.2 *************** *** 18,20 **** --- 18,23 ---- + String value () + throws CCMException; + } Index: I1Adapter.java =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/JavaAssembly/prototype/wamas/Test/I1Adapter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** I1Adapter.java 15 Feb 2007 09:27:23 -0000 1.1 --- I1Adapter.java 15 Feb 2007 09:51:31 -0000 1.2 *************** *** 32,36 **** } ! } --- 32,44 ---- } ! ! ! 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** C1i1Impl.java 15 Feb 2007 09:27:24 -0000 1.1 --- C1i1Impl.java 15 Feb 2007 09:51:31 -0000 1.2 *************** *** 43,45 **** --- 43,52 ---- + public String value() + throws CCMException + { + // TODO: IMPLEMENT ME HERE ! + return ""; + } + } |