Last change
on this file was 1389, checked in by bird, 21 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
976 bytes
|
Line | |
---|
1 | package javax.swing.plaf;
|
---|
2 |
|
---|
3 | import javax.swing.text.*;
|
---|
4 | import java.awt.*;
|
---|
5 |
|
---|
6 | public abstract class TextUI extends ComponentUI
|
---|
7 | {
|
---|
8 | public TextUI()
|
---|
9 | {
|
---|
10 | }
|
---|
11 |
|
---|
12 | public abstract void damageRange(JTextComponent t, int p0, int p1);
|
---|
13 | public abstract void damageRange(JTextComponent t, int p0, int p1, Position.Bias firstBias, Position.Bias secondBias);
|
---|
14 | public abstract EditorKit getEditorKit(JTextComponent t);
|
---|
15 | public abstract int getNextVisualPositionFrom(JTextComponent t,
|
---|
16 | int pos,
|
---|
17 | Position.Bias b,
|
---|
18 | int direction,
|
---|
19 | Position.Bias[] biasRet);
|
---|
20 | public abstract View getRootView(JTextComponent t);
|
---|
21 | public abstract Rectangle modelToView(JTextComponent t, int pos);
|
---|
22 | public abstract Rectangle modelToView(JTextComponent t, int pos, Position.Bias bias);
|
---|
23 | public abstract int viewToModel(JTextComponent t, Point pt);
|
---|
24 | public abstract int viewToModel(JTextComponent t, Point pt, Position.Bias[] biasReturn);
|
---|
25 |
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.