Changes between Version 19 and Version 20 of GoodCodeExamples
- Timestamp:
- 05/20/09 16:42:37 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v19 v20 95 95 WindowConstants.DO_NOTHING_ON_CLOSE); 96 96 }}} 97 but again it is advisable to use variables, something like: 98 int closeOperation = WindowConstants.DO_NOTHING_ON_CLOSE; 99 res.setDefaultCloseOperation(closeOperation);