Mail Archive Home | fractal-commits List | March 2006 Index
| <-- Date Index --> | <-- Thread Index --> |
Date: Sunday, March 26, 2006 @ 16:50:44
Author: seintur
Path: .../aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell
Modified: lib/interf/DelegatorHelper.java
tools/interf/InterfaceGenerator.java
Bug fix for remote downloading of communication stub code with RMIClassLoader.
--------------------------------------+
lib/interf/DelegatorHelper.java | 2 +-
tools/interf/InterfaceGenerator.java | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
Index:
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/lib/interf/DelegatorHelper.java
diff -u
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/lib/interf/DelegatorHelper.java:1.1
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/lib/interf/DelegatorHelper.java:1.2
---
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/lib/interf/DelegatorHelper.java:1.1
Tue Mar 7 18:23:17 2006
+++
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/lib/interf/DelegatorHelper.java
Sun Mar 26 16:50:44 2006
@@ -50,7 +50,7 @@
String targetClassname, String javaItfSignature, boolean
boundable )
throws ClassNotFoundException {
- return AOKell.getLoader().loadClass(targetClassname);
+ return AOKell.loadClass(targetClassname);
}
/**
Index:
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/tools/interf/InterfaceGenerator.java
diff -u
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/tools/interf/InterfaceGenerator.java:1.4
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/tools/interf/InterfaceGenerator.java:1.5
---
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/tools/interf/InterfaceGenerator.java:1.4
Tue Mar 7 18:23:17 2006
+++
aokell/features/fcinterface/ct/src/org/objectweb/fractal/aokell/tools/interf/InterfaceGenerator.java
Sun Mar 26 16:50:44 2006
@@ -131,7 +131,7 @@
protected void generateFromJava( String java )
throws IOException, ClassNotFoundException {
- Class cl = AOKell.getLoader().loadClass(java);
+ Class cl = AOKell.loadClass(java);
if( ! cl.isInterface() ) {
throw new IllegalArgumentException(java+" is not an interface");
}
@@ -205,7 +205,7 @@
* Determine whether the interface extends AttributeController.
* State cloning is only generated for ImplementedInterfaces.
*/
- Class originterface =
AOKell.getLoader().loadClass(originterfacename);
+ Class originterface = AOKell.loadClass(originterfacename);
boolean isAttributeControllerItf =
(!boundable) &&
AttributeController.class.isAssignableFrom(originterface);
@@ -232,7 +232,7 @@
*/
Map state = new HashMap();
- Class cl = AOKell.getLoader().loadClass(originterfacename);
+ Class cl = AOKell.loadClass(originterfacename);
Method[] methods = cl.getMethods();
for (int i = 0; i < methods.length; i++) {
| <-- Date Index --> | <-- Thread Index --> |
Powered by MHonArc.
Copyright © 2006-2007, OW2 Consortium | contact | webmaster.