本文整理汇总了Java中javax.swing.border.TitledBorder.ABOVE_TOP属性的典型用法代码示例。如果您正苦于以下问题:Java TitledBorder.ABOVE_TOP属性的具体用法?Java TitledBorder.ABOVE_TOP怎么用?Java TitledBorder.ABOVE_TOP使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类javax.swing.border.TitledBorder
的用法示例。
在下文中一共展示了TitledBorder.ABOVE_TOP属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: PositionPropertyEditor
public PositionPropertyEditor() {
super(
new int[] {
TitledBorder.DEFAULT_POSITION,
TitledBorder.ABOVE_TOP,
TitledBorder.TOP,
TitledBorder.BELOW_TOP,
TitledBorder.ABOVE_BOTTOM,
TitledBorder.BOTTOM,
TitledBorder.BELOW_BOTTOM
},
new String[] {
"javax.swing.border.TitledBorder.DEFAULT_POSITION", // NOI18N
"javax.swing.border.TitledBorder.ABOVE_TOP", // NOI18N
"javax.swing.border.TitledBorder.TOP", // NOI18N
"javax.swing.border.TitledBorder.BELOW_TOP", // NOI18N
"javax.swing.border.TitledBorder.ABOVE_BOTTOM", // NOI18N
"javax.swing.border.TitledBorder.BOTTOM", // NOI18N
"javax.swing.border.TitledBorder.BELOW_BOTTOM" // NOI18N
},
new String[] {
"VALUE_PosDefault", // NOI18N
"VALUE_PosAboveTop", // NOI18N
"VALUE_PosTop", // NOI18N
"VALUE_PosBelowTop", // NOI18N
"VALUE_PosAboveBottom", // NOI18N
"VALUE_PosBottom", // NOI18N
"VALUE_PosBelowBottom", // NOI18N
}
);
}
示例2: getObject
protected TitledBorderUIResource getObject() {
return new TitledBorderUIResource(
new EmptyBorder(1, 2, 3, 4),
"TITLE",
TitledBorder.CENTER,
TitledBorder.ABOVE_TOP,
new Font("Serif", Font.ITALIC, 12),
Color.RED);
}
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:9,代码来源:javax_swing_plaf_BorderUIResource_TitledBorderUIResource.java
示例3: getObject
protected TitledBorder getObject() {
return new TitledBorder(
new EmptyBorder(1, 2, 3, 4),
"TITLE",
TitledBorder.CENTER,
TitledBorder.ABOVE_TOP,
new Font("Arial", Font.ITALIC, 12),
Color.RED);
}