< prev index next >

src/java.desktop/share/classes/com/sun/beans/editors/FontEditor.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1996, 2014, 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. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1996, 2018, 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. Oracle designates this
*** 211,221 **** private Label sample; private Choice familyChoser; private Choice styleChoser; private Choice sizeChoser; ! private String fonts[]; private String[] styleNames = { "plain", "bold", "italic" }; private int[] styles = { Font.PLAIN, Font.BOLD, Font.ITALIC }; private int[] pointSizes = { 3, 5, 8, 10, 12, 14, 18, 24, 36, 48 }; private PropertyChangeSupport support = new PropertyChangeSupport(this); --- 211,221 ---- private Label sample; private Choice familyChoser; private Choice styleChoser; private Choice sizeChoser; ! private String[] fonts; private String[] styleNames = { "plain", "bold", "italic" }; private int[] styles = { Font.PLAIN, Font.BOLD, Font.ITALIC }; private int[] pointSizes = { 3, 5, 8, 10, 12, 14, 18, 24, 36, 48 }; private PropertyChangeSupport support = new PropertyChangeSupport(this);
< prev index next >