Searched refs:dropLocation (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableCellRenderer.java196 JTable.DropLocation dropLocation = table.getDropLocation();
197 if (dropLocation != null
198 && !dropLocation.isInsertRow()
199 && !dropLocation.isInsertColumn()
200 && dropLocation.getRow() == row
201 && dropLocation.getColumn() == column) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListCellRenderer.java125 JList.DropLocation dropLocation = list.getDropLocation();
126 if (dropLocation != null
127 && !dropLocation.isInsert()
128 && dropLocation.getIndex() == index) {
H A DTransferHandler.java229 private DropLocation dropLocation; field in class:TransferHandler.TransferSupport
282 dropLocation = null;
298 dropLocation = SwingAccessor.getJTextComponentAccessor().
301 dropLocation = ((JComponent)component).dropLocationForPoint(p);
362 if (dropLocation == null) {
371 dropLocation = new DropLocation(p);
374 return dropLocation;
1436 DropLocation dropLocation = (support == null)
1442 setDropLocation((JTextComponent)component, dropLocation, state, forDrop);
1444 state = ((JComponent)component).setDropLocation(dropLocation, stat
[all...]
H A DJList.java341 private transient DropLocation dropLocation; field in class:JList
1401 if (dropLocation == null) {
1420 DropLocation old = dropLocation;
1421 dropLocation = listLocation;
1422 firePropertyChange("dropLocation", old, dropLocation);
1438 * name "dropLocation" is fired by the component.
1453 return dropLocation;
H A DJTree.java317 private transient DropLocation dropLocation; field in class:JTree
1435 if (dropLocation == null) {
1451 DropLocation old = dropLocation;
1452 dropLocation = treeLocation;
1453 firePropertyChange("dropLocation", old, dropLocation);
1478 * name "dropLocation" is fired by the component.
1486 return dropLocation;
H A DJTable.java448 private transient DropLocation dropLocation; field in class:JTable
1762 if (dropLocation == null) {
1789 DropLocation old = dropLocation;
1790 dropLocation = tableLocation;
1791 firePropertyChange("dropLocation", old, dropLocation);
1807 * name "dropLocation" is fired by the component.
1815 return dropLocation;
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeCellRenderer.java439 JTree.DropLocation dropLocation = tree.getDropLocation();
440 if (dropLocation != null
441 && dropLocation.getChildIndex() == -1
442 && tree.getRowForPath(dropLocation.getPath()) == row) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java532 JTree.DropLocation dropLocation = tree.getDropLocation();
533 boolean isDrop = dropLocation != null
534 && dropLocation.getChildIndex() == -1
535 && path == dropLocation.getPath();
632 if ("dropLocation" == event.getPropertyName()) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java885 if (dropLocation == null) {
920 if (dropLocation == null) {
932 DropLocation old = dropLocation;
933 dropLocation = textLocation;
934 firePropertyChange("dropLocation", old, dropLocation);
950 * name "dropLocation" is fired by the component.
958 return dropLocation;
3859 private transient DropLocation dropLocation; field in class:JTextComponent
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextUI.java1800 } else if ("dropLocation" == propertyName) {
1814 JTextComponent.DropLocation dropLocation = editor.getDropLocation();
1816 if (dropLocation == null) {
1829 dropCaret.setDot(dropLocation.getIndex(),
1830 dropLocation.getBias());

Completed in 312 milliseconds