Searched defs:DropLocation (Results 1 - 5 of 5) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | TransferHandler.java | 151 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 D | JList.java | 341 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 D | JTree.java | 317 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 D | JTable.java | 448 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...] |
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | JTextComponent.java | 765 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...] |
Completed in 85 milliseconds