|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object javax.swing.text.Utilities
public class Utilities
处理各种文本相关活动的方法集合。
构造方法摘要 | |
---|---|
Utilities() |
方法摘要 | |
---|---|
static int |
drawTabbedText(Segment s, int x, int y, Graphics g, TabExpander e, int startOffset) 使用给定的制表符扩展方式来扩展给定文本所包含的任何制表符,从而绘制给定的文本。 |
static int |
getBreakLocation(Segment s, FontMetrics metrics, int x0, int x, TabExpander e, int startOffset) 确定对给定文本进行拆分的位置,以符合给定的跨距。 |
static int |
getNextWord(JTextComponent c, int offs) 确定针对给定位置的下一个单词开头。 |
static Element |
getParagraphElement(JTextComponent c, int offs) 确定某个段落/行要使用的元素。 |
static int |
getPositionAbove(JTextComponent c, int offs, int x) 确定模型中离行上方给定的视图位置最近的位置。 |
static int |
getPositionBelow(JTextComponent c, int offs, int x) 确定模型中离行下方给定的视图位置最近的位置。 |
static int |
getPreviousWord(JTextComponent c, int offs) 确定针对给定位置的上一个单词开头。 |
static int |
getRowEnd(JTextComponent c, int offs) 确定包含指定模型位置的行的结束行模型位置。 |
static int |
getRowStart(JTextComponent c, int offs) 确定包含指定模型位置的行的起始行模型位置。 |
static int |
getTabbedTextOffset(Segment s, FontMetrics metrics, int x0, int x, TabExpander e, int startOffset) 确定给定文本中的某个相对偏移量,使其能最好的表示视图坐标系统中的给定跨距。 |
static int |
getTabbedTextOffset(Segment s, FontMetrics metrics, int x0, int x, TabExpander e, int startOffset, boolean round) |
static int |
getTabbedTextWidth(Segment s, FontMetrics metrics, int x, TabExpander e, int startOffset) 确定给定的考虑制表符的文本段的宽度。 |
static int |
getWordEnd(JTextComponent c, int offs) 确定针对给定位置的单词结尾。 |
static int |
getWordStart(JTextComponent c, int offs) 确定针对给定模型位置的单词开头。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public Utilities()
方法详细信息 |
---|
public static final int drawTabbedText(Segment s, int x, int y, Graphics g, TabExpander e, int startOffset)
s
- 文本源
x
- X 起始处,该值 >= 0
y
- Y 起始处,该值 >= 0
g
- 图形上下文
e
- 扩展制表符的方式如果此值为 null,则制表符将被扩展成为一个空白字符。
startOffset
- 文档中文本的起始偏移量,该值 >= 0
public static final int getTabbedTextWidth(Segment s, FontMetrics metrics, int x, TabExpander e, int startOffset)
s
- 文本源
metrics
- 用于计算的字体规格
x
- X 起始处,该值 >= 0
e
- 扩展制表符的方式。如果此值为 null,则制表符将被扩展成为一个空白字符。
startOffset
- 文档中文本的起始偏移量,该值 >= 0
public static final int getTabbedTextOffset(Segment s, FontMetrics metrics, int x0, int x, TabExpander e, int startOffset)
s
- 文本源
metrics
- 用于计算的字体规格
x0
- 代表给定文本开始处起始视图的位置,该值 >= 0。
x
- 要转换为文本中偏移量的目标视图位置,该值 >= 0。
e
- 扩展制表符的方式。如果此值为 null,则制表符将被扩展成为一个空白字符。
startOffset
- 文档中文本的起始偏移量,该值 >= 0
public static final int getTabbedTextOffset(Segment s, FontMetrics metrics, int x0, int x, TabExpander e, int startOffset, boolean round)
public static final int getBreakLocation(Segment s, FontMetrics metrics, int x0, int x, TabExpander e, int startOffset)
s
- 文本源
metrics
- 用于计算的字体规格
x0
- 表示给定文本开始处的起始视图位置。
x
- 要转换为文本中偏移量的目标视图位置。
e
- 扩展制表符的方式。如果此值为 null,则制表符将被扩展成为一个空白字符。
startOffset
- 文本文档中的起始偏移量
public static final int getRowStart(JTextComponent c, int offs) throws BadLocationException
c
- 编辑器
offs
- 文档中的偏移量,该值 >= 0
BadLocationException
- 如果偏移量超出范围
public static final int getRowEnd(JTextComponent c, int offs) throws BadLocationException
c
- 编辑器
offs
- 文档中的偏移量,该值 >= 0
BadLocationException
- 如果偏移量超出范围
public static final int getPositionAbove(JTextComponent c, int offs, int x) throws BadLocationException
c
- 编辑器
offs
- 文档中的偏移量,该值 >= 0
x
- X 坐标,该值 >= 0
BadLocationException
- 如果偏移量超出范围
public static final int getPositionBelow(JTextComponent c, int offs, int x) throws BadLocationException
c
- 编辑器
offs
- 文档中的偏移量,该值 >= 0
x
- X 坐标,该值 >= 0
BadLocationException
- 如果偏移量超出范围
public static final int getWordStart(JTextComponent c, int offs) throws BadLocationException
c
- 编辑器
offs
- 文档中的偏移量,该值 >= 0
BadLocationException
- 如果偏移量超出范围
public static final int getWordEnd(JTextComponent c, int offs) throws BadLocationException
c
- 编辑器
offs
- 文档中的偏移量,该值 >= 0
BadLocationException
- 如果偏移量超出范围
public static final int getNextWord(JTextComponent c, int offs) throws BadLocationException
c
- 编辑器
offs
- 文档中的偏移量,该值 >= 0
BadLocationException
- 如果偏移量超出范围
public static final int getPreviousWord(JTextComponent c, int offs) throws BadLocationException
c
- 编辑器
offs
- 文档中的偏移量,该值 >= 0
BadLocationException
- 如果偏移量超出范围
public static final Element getParagraphElement(JTextComponent c, int offs)
c
- 编辑器
offs
- 文档中的起始偏移量,该值 >= 0
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。