Imported GNU Classpath 0.20

Imported GNU Classpath 0.20
       * Makefile.am (AM_CPPFLAGS): Add classpath/include.
       * java/nio/charset/spi/CharsetProvider.java: New override file.
       * java/security/Security.java: Likewise.
       * sources.am: Regenerated.
       * Makefile.in: Likewise.

From-SVN: r109831
This commit is contained in:
Mark Wielaard 2006-01-17 18:09:40 +00:00
parent bcb36c3e02
commit 2127637945
444 changed files with 75778 additions and 30731 deletions

View file

@ -45,6 +45,7 @@ import java.awt.Rectangle;
import java.text.BreakIterator;
import javax.swing.SwingConstants;
import javax.swing.SwingUtilities;
/**
* A set of utilities to deal with text. This is used by several other classes
@ -573,10 +574,11 @@ public class Utilities
View rootView = c.getUI().getRootView(c);
Rectangle r = c.modelToView(offset);
int offs = c.viewToModel(new Point(x, r.y));
int pos = rootView.getNextVisualPositionFrom(c, offs,
Position.Bias.Forward,
SwingConstants.NORTH,
new Position.Bias[1]);
int pos = rootView.getNextVisualPositionFrom(offs,
Position.Bias.Forward,
SwingUtilities.calculateInnerArea(c, null),
SwingConstants.NORTH,
new Position.Bias[1]);
return pos;
}
@ -599,10 +601,11 @@ public class Utilities
View rootView = c.getUI().getRootView(c);
Rectangle r = c.modelToView(offset);
int offs = c.viewToModel(new Point(x, r.y));
int pos = rootView.getNextVisualPositionFrom(c, offs,
Position.Bias.Forward,
SwingConstants.SOUTH,
new Position.Bias[1]);
int pos = rootView.getNextVisualPositionFrom(offs,
Position.Bias.Forward,
SwingUtilities.calculateInnerArea(c, null),
SwingConstants.SOUTH,
new Position.Bias[1]);
return pos;
}
}