本文整理匯總了Java中javax.swing.border.TitledBorder.RIGHT屬性的典型用法代碼示例。如果您正苦於以下問題:Java TitledBorder.RIGHT屬性的具體用法?Java TitledBorder.RIGHT怎麽用?Java TitledBorder.RIGHT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類javax.swing.border.TitledBorder
的用法示例。
在下文中一共展示了TitledBorder.RIGHT屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: JustificationPropertyEditor
public JustificationPropertyEditor() {
super(
new int[] {
TitledBorder.DEFAULT_JUSTIFICATION,
TitledBorder.LEFT,
TitledBorder.CENTER,
TitledBorder.RIGHT,
TitledBorder.LEADING,
TitledBorder.TRAILING,
},
new String[] {
"javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION", // NOI18N
"javax.swing.border.TitledBorder.LEFT", // NOI18N
"javax.swing.border.TitledBorder.CENTER", // NOI18N
"javax.swing.border.TitledBorder.RIGHT", // NOI18N
"javax.swing.border.TitledBorder.LEADING", // NOI18N
"javax.swing.border.TitledBorder.TRAILING", // NOI18N
},
new String[] {
"VALUE_JustDefault", // NOI18N
"VALUE_JustLeft", // NOI18N
"VALUE_JustCenter", // NOI18N
"VALUE_JustRight", // NOI18N
"VALUE_JustLeading", // NOI18N
"VALUE_JustTrailing", // NOI18N
}
);
}