]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/PackageEditor/src/org/tianocore/packaging/common/ui/StarLabel.java
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@671 6f19259b...
[mirror_edk2.git] / Tools / Source / PackageEditor / src / org / tianocore / packaging / common / ui / StarLabel.java
CommitLineData
878ddf1f 1/** @file\r
2 Java class StarLabel is used to create star label.\r
3 \r
4Copyright (c) 2006, Intel Corporation\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12**/\r
13package org.tianocore.packaging.common.ui;\r
14\r
15import javax.swing.JLabel;\r
16\r
17/**\r
18 Derived from JLabel class to have a red star on it.\r
19 \r
20 @since PackageEditor 1.0\r
21**/\r
22public class StarLabel extends JLabel{\r
23 /**\r
24 * This is the default constructor\r
25 */\r
26 public StarLabel() {\r
27 super();\r
28 init();\r
29 }\r
30 \r
31 /**\r
32 Create a label with red star * appear on it\r
33 **/\r
34 private void init() {\r
35 this.setText("*");\r
36 this.setSize(new java.awt.Dimension(10,20));\r
37 this.setForeground(java.awt.Color.red);\r
38 this.setFont(new java.awt.Font("DialogInput", java.awt.Font.BOLD, 14));\r
39 this.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);\r
40 }\r
41}\r