Uses of Interface
javax.swing.text.Style
-
Packages that use Style 软件包 描述 javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。javax.swing.text.html 提供类HTMLEditorKit
以及用于创建HTML文本编辑器的支持类。 -
-
Uses of Style in javax.swing
Methods in javax.swing that return Style 变量和类型 方法 描述 Style
JTextPane. addStyle(String nm, Style parent)
在逻辑样式层次结构中添加新样式。Style
JTextPane. getLogicalStyle()
获取分配给由插入符当前位置表示的段落的逻辑样式,或null
。Style
JTextPane. getStyle(String nm)
获取先前添加的命名非null
样式。Methods in javax.swing with parameters of type Style 变量和类型 方法 描述 Style
JTextPane. addStyle(String nm, Style parent)
在逻辑样式层次结构中添加新样式。void
JTextPane. setLogicalStyle(Style s)
设置用于当前插入符号位置的段落的逻辑样式。 -
Uses of Style in javax.swing.text
Classes in javax.swing.text that implement Style 变量和类型 类 描述 class
StyleContext.NamedStyle
一组属性,通常用于表示字符和段落样式。Methods in javax.swing.text that return Style 变量和类型 方法 描述 Style
DefaultStyledDocument. addStyle(String nm, Style parent)
在逻辑样式层次结构中添加新样式。Style
StyleContext. addStyle(String nm, Style parent)
在样式层次结构中添加新样式。Style
StyledDocument. addStyle(String nm, Style parent)
在逻辑样式层次结构中添加新样式。Style
DefaultStyledDocument. getLogicalStyle(int p)
获取分配给给定位置所代表的段落的逻辑样式。Style
StyledDocument. getLogicalStyle(int p)
获取段落中给定位置的逻辑样式。Style
DefaultStyledDocument. getStyle(String nm)
获取先前添加的命名样式。Style
StyleContext. getStyle(String nm)
获取先前添加到文档中的命名样式Style
StyledDocument. getStyle(String nm)
获取先前添加的命名样式。Methods in javax.swing.text with parameters of type Style 变量和类型 方法 描述 Style
DefaultStyledDocument. addStyle(String nm, Style parent)
在逻辑样式层次结构中添加新样式。Style
StyleContext. addStyle(String nm, Style parent)
在样式层次结构中添加新样式。Style
StyledDocument. addStyle(String nm, Style parent)
在逻辑样式层次结构中添加新样式。void
DefaultStyledDocument. setLogicalStyle(int pos, Style s)
设置用于给定位置的段落的逻辑样式。void
StyledDocument. setLogicalStyle(int pos, Style s)
设置用于给定位置的段落的逻辑样式。protected void
DefaultStyledDocument. styleChanged(Style style)
当本文档的任何样式发生变化时调用。Constructors in javax.swing.text with parameters of type Style 构造器 描述 NamedStyle(String name, Style parent)
创建一个新的命名样式。NamedStyle(Style parent)
创建一个新的命名样式。 -
Uses of Style in javax.swing.text.html
Methods in javax.swing.text.html that return Style 变量和类型 方法 描述 Style
StyleSheet. getRule(String selector)
获取与字符串形式中给出的选择器最匹配的规则。Style
StyleSheet. getRule(HTML.Tag t, Element e)
获取用于呈现给定类型的HTML标记的样式。
-