1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.xulux.guilayer.swing.extensions;
17
18 import java.awt.Color;
19 import java.awt.Font;
20
21 import javax.swing.border.Border;
22 import javax.swing.border.TitledBorder;
23
24
25
26
27
28
29 public class NyxTitledBorder extends TitledBorder {
30
31
32
33
34 public NyxTitledBorder(String title) {
35 super(title);
36 }
37
38
39
40
41 public NyxTitledBorder(Border border) {
42 super(border);
43 }
44
45
46
47
48
49 public NyxTitledBorder(Border border, String title) {
50 super(border, title);
51 }
52
53
54
55
56
57
58
59 public NyxTitledBorder(
60 Border border,
61 String title,
62 int titleJustification,
63 int titlePosition) {
64 super(border, title, titleJustification, titlePosition);
65 }
66
67
68
69
70
71
72
73
74 public NyxTitledBorder(
75 Border border,
76 String title,
77 int titleJustification,
78 int titlePosition,
79 Font titleFont) {
80 super(border, title, titleJustification, titlePosition, titleFont);
81 }
82
83
84
85
86
87
88
89
90
91 public NyxTitledBorder(
92 Border border,
93 String title,
94 int titleJustification,
95 int titlePosition,
96 Font titleFont,
97 Color titleColor) {
98 super(
99 border,
100 title,
101 titleJustification,
102 titlePosition,
103 titleFont,
104 titleColor);
105 }
106
107 }