/* * Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
publicclass Test6978482 { privatestaticfinal JLabel LABEL = new JLabel(); privatestaticfinal JToolBar TOOLBAR = new JToolBar(); // init non-rollover border
privatestaticfinal Border[] BORDERS = { new MotifBorders.BevelBorder(true, Color.BLACK, Color.WHITE), new MotifBorders.ButtonBorder(Color.CYAN, Color.MAGENTA, Color.YELLOW, Color.BLACK), new MotifBorders.FocusBorder(Color.BLACK, Color.WHITE), new MotifBorders.FrameBorder(LABEL), new MotifBorders.MenuBarBorder(Color.CYAN, Color.MAGENTA, Color.YELLOW, Color.BLACK), new MotifBorders.MotifPopupMenuBorder(new Font(null, Font.PLAIN, 10), Color.CYAN, Color.MAGENTA, Color.YELLOW, Color.BLACK), new MotifBorders.ToggleButtonBorder(Color.CYAN, Color.MAGENTA, Color.YELLOW, Color.BLACK),
new WindowsBorders.ProgressBarBorder(Color.BLACK, Color.WHITE), new WindowsBorders.ToolBarBorder(Color.BLACK, Color.WHITE), //- WindowsInternalFrameUI.XPBorder is not accessible: check it visually //? WindowsTableHeaderUI.IconBorder is not accessible: check it visually //- XPStyle.XPEmptyBorder is not accessible: check it visually //- XPStyle.XPFillBorder is not accessible: check it visually //- XPStyle.XPImageBorder is not accessible: check it visually
new BevelBorder(BevelBorder.RAISED), new CompoundBorder(), new EmptyBorder(1, 2, 3, 4), new EtchedBorder(), new LineBorder(Color.BLACK, 2, true), new MatteBorder(1, 2, 3, 4, Color.BLACK), new SoftBevelBorder(BevelBorder.LOWERED), new TitledBorder("4856008"),
new BorderUIResource(new EmptyBorder(1, 2, 3, 4)),
new BasicBorders.ButtonBorder(Color.CYAN, Color.MAGENTA, Color.YELLOW, Color.BLACK), new BasicBorders.FieldBorder(Color.CYAN, Color.MAGENTA, Color.YELLOW, Color.BLACK), new BasicBorders.MarginBorder(), new BasicBorders.MenuBarBorder(Color.BLACK, Color.WHITE), new BasicBorders.RadioButtonBorder(Color.CYAN, Color.MAGENTA, Color.YELLOW, Color.BLACK), //+ BasicBorders.RolloverMarginBorder: new ToolBar().getRolloverMarginBorder(), new BasicBorders.SplitPaneBorder(Color.BLACK, Color.WHITE), //+ BasicBorders.SplitPaneDividerBorder:
BasicBorders.getSplitPaneDividerBorder(), new BasicBorders.ToggleButtonBorder(Color.CYAN, Color.MAGENTA, Color.YELLOW, Color.BLACK),
new MetalBorders.ButtonBorder(), //- MetalBorders.DialogBorder is not accessible: check it visually new MetalBorders.Flush3DBorder(), //- MetalBorders.FrameBorder is not accessible: check it visually new MetalBorders.InternalFrameBorder(), new MetalBorders.MenuBarBorder(), new MetalBorders.MenuItemBorder(), new MetalBorders.OptionDialogBorder(), new MetalBorders.PaletteBorder(), new MetalBorders.PopupMenuBorder(), //- MetalBorders.RolloverMarginBorder is not accessible: check it visually new MetalBorders.ScrollPaneBorder(), new MetalBorders.TableHeaderBorder(), new MetalBorders.ToolBarBorder(), //+ MetalComboBoxEditor.EditorBorder: new MetalEditor().getEditorBorder(),
//- SynthBorder is not accessible: check it visually //- SynthScrollPaneUI.ViewportBorder is not accessible: check it visually
//? CSSBorder is not accessible: check it visually //? CommentView.CommentBorder is not accessible: check it visually //- HiddenTagView.EndTagBorder is not accessible: check it visually //- HiddenTagView.StartTagBorder is not accessible: check it visually
//+ SynthFileChooserUI.UIBorder: new SynthFileChooser().getUIBorder(),
//+ LoweredBorder: new NimbusLookAndFeel().getDefaults().getBorder("TitledBorder.border"),
};
publicstaticvoid main(String[] args) {
Component c = new Component() {};
c.setBackground(Color.WHITE);
c.setForeground(Color.BLACK);
Graphics g = new BufferedImage(1024, 768, BufferedImage.TYPE_INT_RGB).getGraphics();
g.setClip(0, 0, 1024, 768); for (Border border : BORDERS) {
System.out.println(border.getClass());
border.getBorderInsets(c);
border.paintBorder(c, g, 0, 0, 1024, 768);
}
}
// This class is used to get the instance of BasicBorders.RolloverMarginBorder privatestaticclass ToolBar extends BasicToolBarUI { private Border getRolloverMarginBorder() {
JToggleButton button = new JToggleButton();
CompoundBorder border = (CompoundBorder) getNonRolloverBorder(button); return border.getInsideBorder();
}
}
// This class is used to get the instance of MetalComboBoxEditor.EditorBorder privatestaticclass MetalEditor extends MetalComboBoxEditor { private Border getEditorBorder() { return editor.getBorder();
}
}
// This class is used to get the instance of SynthFileChooserUI.UIBorder privatestaticclass SynthFileChooser extends SynthFileChooserUI { privatestaticfinal JFileChooser CHOOSER = new JFileChooser(); private String name;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.