public class BasicTextAreaUI extends BasicTextUI
警告:此类的序列化对象与将来的Swing版本不兼容。 当前的序列化支持适用于运行相同版本的Swing的应用程序之间的短期存储或RMI。 从1.4版本起,支持所有JavaBeans的长期存储已添加到java.beans
软件包中。 请参阅XMLEncoder
。
BasicTextUI.BasicCaret, BasicTextUI.BasicHighlighter
Constructor and Description |
---|
BasicTextAreaUI()
构造一个新的BasicTextAreaUI对象。
|
Modifier and Type | Method and Description |
---|---|
View |
create(Element elem)
创建元素的视图。
|
static ComponentUI |
createUI(JComponent ta)
为JTextArea创建一个UI。
|
int |
getBaseline(JComponent c, int width, int height)
返回基线。
|
Component.BaselineResizeBehavior |
getBaselineResizeBehavior(JComponent c)
返回一个枚举,指示组件的基线如何随着大小的变化而改变。
|
Dimension |
getMinimumSize(JComponent c)
该方法被覆盖以考虑插入符宽度。
|
Dimension |
getPreferredSize(JComponent c)
该方法被覆盖以考虑插入符宽度。
|
protected String |
getPropertyPrefix()
获取用作密钥的名称,通过UIManager查找属性。
|
protected void |
installDefaults()
初始化组件属性,如字体,前景,背景,插入符号颜色,选择颜色,选定的文本颜色,禁用的文本颜色和边框颜色。
|
protected void |
propertyChange(PropertyChangeEvent evt)
当在关联的JTextComponent上更改bound属性时,将调用此方法。
|
create, createCaret, createHighlighter, createKeymap, damageRange, damageRange, getComponent, getEditorKit, getKeymapName, getMaximumSize, getNextVisualPositionFrom, getRootView, getToolTipText, getVisibleEditorRect, installKeyboardActions, installListeners, installUI, modelChanged, modelToView, modelToView, paint, paintBackground, paintSafely, setView, uninstallDefaults, uninstallKeyboardActions, uninstallListeners, uninstallUI, update, viewToModel, viewToModel
contains, getAccessibleChild, getAccessibleChildrenCount
public static ComponentUI createUI(JComponent ta)
ta
- 一个文本区域
protected String getPropertyPrefix()
getPropertyPrefix
在
BasicTextUI
类
protected void installDefaults()
BasicTextUI
protected void propertyChange(PropertyChangeEvent evt)
propertyChange
在
BasicTextUI
evt
- 财产变更事件
public Dimension getPreferredSize(JComponent c)
getPreferredSize
在
BasicTextUI
c
- 编辑器组件
IllegalArgumentException
- 如果传递无效值
JComponent.getPreferredSize()
,
LayoutManager.preferredLayoutSize(java.awt.Container)
public Dimension getMinimumSize(JComponent c)
getMinimumSize
在
BasicTextUI
c
- 编辑器组件
IllegalArgumentException
- 如果无效值被传递
JComponent.getMinimumSize()
,
LayoutManager.minimumLayoutSize(java.awt.Container)
,
ComponentUI.getPreferredSize(javax.swing.JComponent)
public View create(Element elem)
create
在界面
ViewFactory
create
在
BasicTextUI
elem
- 元素
View
public int getBaseline(JComponent c, int width, int height)
getBaseline
在
ComponentUI
c
-
JComponent
正在要求基准
width
- 获取基准的宽度
height
- 获得基准的高度
NullPointerException
- 如果
c
是
null
IllegalArgumentException
- 如果宽度或高度<0
JComponent.getBaseline(int, int)
public Component.BaselineResizeBehavior getBaselineResizeBehavior(JComponent c)
getBaselineResizeBehavior
在
ComponentUI
c
-
JComponent
以返回基线调整大小行为
NullPointerException
- 如果
c
是
null
JComponent.getBaseline(int, int)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.