Changes between Version 15 and Version 16 of GROUP_DEPLOYMENT_R2
- Timestamp:
- 08/26/09 15:00:01 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GROUP_DEPLOYMENT_R2
v15 v16 65 65 * @Override annotations for the methods coming from interface not superclass has to be removed. 66 66 * <?> generics has to be changed where the wildcards of the class are V and T for example. One way to do this it to just remove generic and add suppress warning(because <?> include everything possible for parameter). 67 * Where classes from java 6 are used a way to pass over them has to be implemented. For example TransferSupport is not included in java 6so TransferHandler importData(JComponent, Transferable) has to be used instead of importData(TransferSupport). Another example is that IOException class doesn't have constructor which takes throwable argument(only String). So where IOException is thrown SophieLog has to be used to log the throwable object and appropriate string has to be added in IOException throw.67 * Where classes from java 6 are used a way to pass over them has to be implemented. For example TransferSupport is not included in java5 so TransferHandler importData(JComponent, Transferable) has to be used instead of importData(TransferSupport). Another example is that IOException class doesn't have constructor which takes throwable argument(only String). So where IOException is thrown SophieLog has to be used to log the throwable object and appropriate string has to be added in IOException throw. 68 68 * Applet has to use MDAppletWindow to show in the real applet window no in the separate one. 69 69