Searched refs:DropLocation (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingAccessor.java65 TransferHandler.DropLocation dropLocationForPoint(JTextComponent textComp, Point p);
70 Object setDropLocation(JTextComponent textComp, TransferHandler.DropLocation location,
/openjdk7/jdk/test/javax/swing/DataTransfer/6456844/
H A Dbug6456844.java46 JTextComponent.DropLocation location =
47 (JTextComponent.DropLocation) SwingAccessor.getJTextComponentAccessor().dropLocationForPoint(ep,
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java341 private transient DropLocation dropLocation;
344 * A subclass of <code>TransferHandler.DropLocation</code> representing
350 public static final class DropLocation extends TransferHandler.DropLocation { class in class:JList
354 private DropLocation(Point p, int index, boolean isInsert) { method in class:JList.DropLocation
1266 DropLocation dropLocationForPoint(Point p) {
1267 DropLocation location = null;
1278 location = new DropLocation(p,
1285 location = new DropLocation(p, getModel().getSize(), true);
1304 location = new DropLocation(
[all...]
H A DJTable.java448 private transient DropLocation dropLocation;
451 * A subclass of <code>TransferHandler.DropLocation</code> representing
457 public static final class DropLocation extends TransferHandler.DropLocation { class in class:JTable
463 private DropLocation(Point p, int row, int col, method in class:JTable.DropLocation
1521 DropLocation dropLocationForPoint(Point p) {
1522 DropLocation location = null;
1538 location = new DropLocation(p, -1, -1, false, false);
1540 location = new DropLocation(p, row, col, false, false);
1545 location = new DropLocation(
[all...]
H A DJTree.java317 private transient DropLocation dropLocation;
320 * A subclass of <code>TransferHandler.DropLocation</code> representing
326 public static final class DropLocation extends TransferHandler.DropLocation { class in class:JTree
330 private DropLocation(Point p, TreePath path, int index) { method in class:JTree.DropLocation
1292 DropLocation dropLocationForPoint(Point p) {
1293 DropLocation location = null;
1311 location = new DropLocation(p, null, -1);
1313 location = new DropLocation(p, getPathForRow(row), -1);
1321 location = new DropLocation(
[all...]
H A DDefaultListCellRenderer.java125 JList.DropLocation dropLocation = list.getDropLocation();
H A DTransferHandler.java151 public static class DropLocation { class in class:TransferHandler
162 protected DropLocation(Point dropPoint) { method in class:TransferHandler.DropLocation
229 private DropLocation dropLocation;
348 * will be a subclass of {@code DropLocation} of the same type
359 public DropLocation getDropLocation() {
371 dropLocation = new DropLocation(p);
1436 DropLocation dropLocation = (support == null)
H A DJComponent.java3248 * will provide a default <code>DropLocation</code> containing just
3254 TransferHandler.DropLocation dropLocationForPoint(Point p) {
3291 Object setDropLocation(TransferHandler.DropLocation location,
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableCellRenderer.java196 JTable.DropLocation dropLocation = table.getDropLocation();
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java765 public TransferHandler.DropLocation dropLocationForPoint(JTextComponent textComp,
771 TransferHandler.DropLocation location,
793 DropLocation dropLocationForPoint(Point p) {
803 return new DropLocation(p, index, bias[0]);
845 Object setDropLocation(TransferHandler.DropLocation location,
850 DropLocation textLocation = (DropLocation)location;
932 DropLocation old = dropLocation;
957 public final DropLocation getDropLocation() {
3859 private transient DropLocation dropLocatio
3867 public static final class DropLocation extends TransferHandler.DropLocation { class in class:JTextComponent
3871 private DropLocation(Point p, int index, Position.Bias bias) { method in class:JTextComponent.DropLocation
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java532 JTree.DropLocation dropLocation = tree.getDropLocation();
633 JTree.DropLocation oldValue = (JTree.DropLocation)event.getOldValue();
644 JTree.DropLocation loc = tree.getDropLocation();
657 private void repaintDropLocation(JTree.DropLocation loc) {
H A DSynthTableUI.java376 JTable.DropLocation loc = table.getDropLocation();
420 private Rectangle getHDropLineRect(JTable.DropLocation loc) {
450 private Rectangle getVDropLineRect(JTable.DropLocation loc) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java1276 JTable.DropLocation oldValue = (JTable.DropLocation)event.getOldValue();
1298 private void repaintDropLocation(JTable.DropLocation loc) {
1818 JTable.DropLocation loc = table.getDropLocation();
1862 private Rectangle getHDropLineRect(JTable.DropLocation loc) {
1892 private Rectangle getVDropLineRect(JTable.DropLocation loc) {
H A DBasicListUI.java329 JList.DropLocation loc = list.getDropLocation();
342 private Rectangle getDropLineRect(JList.DropLocation loc) {
2543 JList.DropLocation oldValue = (JList.DropLocation)e.getOldValue();
2549 private void repaintDropLocation(JList.DropLocation loc) {
H A DBasicTreeUI.java1244 * Tells if a {@code DropLocation} should be indicated by a line between
1248 * @param loc a {@code DropLocation}
1252 protected boolean isDropLine(JTree.DropLocation loc) {
1263 JTree.DropLocation loc = tree.getDropLocation();
1279 * @param loc a {@code DropLocation}
1283 protected Rectangle getDropLineRect(JTree.DropLocation loc) {
3460 JTree.DropLocation oldValue = (JTree.DropLocation)event.getOldValue();
3467 private void repaintDropLocation(JTree.DropLocation loc) {
H A DBasicTextUI.java1814 JTextComponent.DropLocation dropLocation = editor.getDropLocation();
2426 dropBias = ((JTextComponent.DropLocation)support.getDropLocation()).getBias();
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeCellRenderer.java439 JTree.DropLocation dropLocation = tree.getDropLocation();

Completed in 139 milliseconds