|
Message
From: cvs at opencores.org<cvs@o...>
Date: Mon Feb 25 03:49:48 CET 2008
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/08/02 25:03:49 Modified: jop/java/tools/src/com/jopdesign/libgraph/struct AppConfig.java Log: added library check Revision Changes Path 1.2 jop/java/tools/src/com/jopdesign/libgraph/struct/AppConfig.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/libgraph/struct/AppConfig.java.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: AppConfig.java =================================================================== RCS file: /cvsroot/stefant/jop/java/tools/src/com/jopdesign/libgraph/struct/AppConfig.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- AppConfig.java 13 Jan 2008 20:29:32 -0000 1.1 +++ AppConfig.java 25 Feb 2008 02:49:48 -0000 1.2 @@ -38,8 +38,19 @@ /** * Check if this class is implemented by the JVM. As * these classes cannot be loaded, they must always be ignored. + * * @param className the classname of the class to test. * @return true for classes implemented by the native JVM. */ boolean isNativeClassName(String className); + + /** + * Check if this class is part of a library. Library code can be used by the + * application, but the library must not use code from the application. + * Library code should be ignored. + * + * @param className the classname to check. + * @return true if the class is part of a library (i.e. code that is not related to the application code). + */ + boolean isLibraryClassName(String className); }
|
 |