JDK-4120351 : BorderFactory is missing createRaised/LoweredEtchedBorder()
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 1.2.0
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: windows_nt
  • CPU: x86
  • Submitted: 1998-03-17
  • Updated: 1999-06-24
  • Resolved: 1999-06-24
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
1.3.0 betaFixed
Related Reports
Relates :  
Description

Name: rm29839			Date: 03/17/98


BorderFactory should have createRaisedEtchedBorder()
and createLoweredEtchedBorder() methods instead of
the createEtchedBorder() method, which creates a
raised border by default.
(Review ID: 26298)
======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: kestrel-beta FIXED IN: kestrel-beta INTEGRATED IN: kestrel-beta
14-06-2004

EVALUATION [aim 3/18/98] This is true and I consider it more of a bug than an RFE. scott.violet@eng 1999-06-04 The following methods have been added: /** * Create a border with an "etched" look using * the component's current background color for * highlighting and shading. * * @param type one of EtchedBorder.RAISED, or EtchedBorder.LOWERED * @return the Border object * @since 1.3 */ public static Border createEtchedBorder(int type) { /** * Create a border with an "etched" look using * the specified highlighting and shading colors. * * @param type one of EtchedBorder.RAISED, or EtchedBorder.LOWERED * @param highlight a Color object for the border highlights * @param shadow a Color object for the border shadows * @return the Border object * @since 1.3 */ public static Border createEtchedBorder(int type, Color highlight,
11-06-2004

PUBLIC COMMENTS The following methods have been added: /** * Create a border with an "etched" look using * the component's current background color for * highlighting and shading. * * @param type one of EtchedBorder.RAISED, or EtchedBorder.LOWERED * @return the Border object * @since 1.3 */ public static Border createEtchedBorder(int type) { /** * Create a border with an "etched" look using * the specified highlighting and shading colors. * * @param type one of EtchedBorder.RAISED, or EtchedBorder.LOWERED * @param highlight a Color object for the border highlights * @param shadow a Color object for the border shadows * @return the Border object * @since 1.3 */ public static Border createEtchedBorder(int type, Color highlight, scott.violet@eng 1999-06-04
04-06-1999