Update of /cvsroot/sheets/sheets
In directory sc8-pr-cvs1:/tmp/cvs-serv24756
Modified Files:
Sheets.sheets
Log Message:
1. Backed out a bad version of OX. (There is a problem with ArchivalReferences holding onto released objects that I need to work through later)
2. Changed extend class wizard highlighting algorithm to not select final methods
Index: Sheets.sheets
===================================================================
RCS file: /cvsroot/sheets/sheets/Sheets.sheets,v
retrieving revision 1.61
retrieving revision 1.62
diff -C2 -d -r1.61 -r1.62
*** Sheets.sheets 15 Jun 2003 10:57:33 -0000 1.61
--- Sheets.sheets 16 Jun 2003 20:40:00 -0000 1.62
***************
*** 57963,57967 ****
JavaFunctionInterface javaFunction = (JavaFunctionInterface) possibleMethods.elementAt(i);
methods.addItem(javaFunction.toString());
! if (javaFunction.isAbstract() || javaFunction.enclosingClass().isInterface())
methods.select(i);
}
--- 57963,57967 ----
JavaFunctionInterface javaFunction = (JavaFunctionInterface) possibleMethods.elementAt(i);
methods.addItem(javaFunction.toString());
! if ((javaFunction.isAbstract() || javaFunction.enclosingClass().isInterface()) && !javaFunction.isFinal())
methods.select(i);
}
|