* NOT PART OF TBOX BUILDS *
InterfaceRegistry.registerInterface became public. git-svn-id: svn://10.0.0.236/trunk@79423 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -56,11 +56,12 @@ class InterfaceRegistry {
|
||||
}
|
||||
}
|
||||
|
||||
private static void registerInterfaces(Class cl) {
|
||||
public static void registerInterfaces(Class cl) {
|
||||
try {
|
||||
Object iidStr = cl.getField(IID_STRING).get(cl);
|
||||
if (iidStr instanceof String) {
|
||||
IID iid = new IID((String)iidStr);
|
||||
ProxyFactory.registerInterfaceForIID(cl,iid);
|
||||
String[] methodNames = Utilities.getInterfaceMethodNames((String)iidStr);
|
||||
if (methodNames != null) {
|
||||
Method[] rmethods = new Method[methodNames.length];
|
||||
|
||||
Reference in New Issue
Block a user