Commit 92d53a9a by Michael Koch Committed by Michael Koch

2003-03-02 Michael Koch <konqueror@gmx.de>

	* javax/swing/text/Caret.java
	(getMagicCaretPosition): Fixed typo in method name.
	* javax/swing/text/DefaultCaret.java
	(getMagicCaretPosition): Fixed typo in method name.

From-SVN: r63673
parent 98461c58
2003-03-02 Michael Koch <konqueror@gmx.de> 2003-03-02 Michael Koch <konqueror@gmx.de>
* javax/swing/text/Caret.java
(getMagicCaretPosition): Fixed typo in method name.
* javax/swing/text/DefaultCaret.java
(getMagicCaretPosition): Fixed typo in method name.
2003-03-02 Michael Koch <konqueror@gmx.de>
* java/awt/List.java * java/awt/List.java
(setMultipleSelections): Deprecated. (setMultipleSelections): Deprecated.
(delItem): Deprecated. (delItem): Deprecated.
......
...@@ -46,7 +46,7 @@ public interface Caret ...@@ -46,7 +46,7 @@ public interface Caret
void deinstall(JTextComponent c); void deinstall(JTextComponent c);
int getBlinkRate(); int getBlinkRate();
int getDot(); int getDot();
Point getMagicaretPosition(); Point getMagicCaretPosition();
int getMark(); int getMark();
void install(JTextComponent c); void install(JTextComponent c);
boolean isSelectionVisible(); boolean isSelectionVisible();
......
...@@ -104,7 +104,7 @@ public class DefaultCaret extends Rectangle implements Caret, FocusListener, Mou ...@@ -104,7 +104,7 @@ public class DefaultCaret extends Rectangle implements Caret, FocusListener, Mou
Point magic = null; Point magic = null;
public void setMagicCaretPosition(Point p) public void setMagicCaretPosition(Point p)
{ magic = p; } { magic = p; }
public Point getMagicaretPosition() public Point getMagicCaretPosition()
{ return magic; } { return magic; }
...@@ -167,6 +167,3 @@ public class DefaultCaret extends Rectangle implements Caret, FocusListener, Mou ...@@ -167,6 +167,3 @@ public class DefaultCaret extends Rectangle implements Caret, FocusListener, Mou
repaint(); repaint();
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment