This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 97562 - Renaming of non-standard names
Summary: Renaming of non-standard names
Status: RESOLVED FIXED
Alias: None
Product: platform
Classification: Unclassified
Component: Graph (show other bugs)
Version: 3.x
Hardware: All All
: P2 blocker (vote)
Assignee: issues@platform
URL:
Keywords:
Depends on:
Blocks: 95110
  Show dependency tree
 
Reported: 2007-03-09 13:01 UTC by David Kaspar
Modified: 2007-03-09 16:53 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Kaspar 2007-03-09 13:02:00 UTC
Some names of methods/classes are non-standard e.g. FillLayout.
They should be changed to standard ones e.g. OverlayLayout.
Comment 1 David Kaspar 2007-03-09 16:53:44 UTC
FillLayout class has been renamed to OverlayLayout. SerialLayout class has been
renamed to FlowLayout.
At the same time their factory methods has bee renamed too.
LayoutFactory.createFillLayout method renamed to LayoutFactory.createOverlayLayout.
LayoutFactory.createHorizontalLayout method renamed to
LayoutFactory.createHorizontalFlowLayout.
LayoutFactory.createVerticalLayout method renamed to
LayoutFactory.createVerticalFlowLayout.
The original methods are deprecated now and are going to be removed for 6.0
Milestone 9. The new methods has been added.
Also BorderLayout.createFancyDashedBorder method is going to be removed for 6.0
Milestone 9.
Use BorderLayout.createDashedBorder(...,true) method instead.
Note that the LayouFactory.SerialAlignment enum name is not changed.