/openjdk7/jdk/test/java/beans/XMLEncoder/ |
H A D | java_awt_Point.java | 27 * @summary Tests Point encoding 31 import java.awt.Point; 33 public final class java_awt_Point extends AbstractTest<Point> { 38 protected Point getObject() { 39 return new Point(-5, 5); 42 protected Point getAnotherObject() { 43 return new Point();
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Layout/src/com/sun/hotspot/igv/layout/ |
H A D | Port.java | 26 import java.awt.Point; 36 public Point getRelativePosition();
|
H A D | Link.java | 26 import java.awt.Point; 39 public List<Point> getControlPoints(); 41 public void setControlPoints(List<Point> list);
|
H A D | Vertex.java | 27 import java.awt.Point; 39 public Point getPosition(); 41 public void setPosition(Point p);
|
/openjdk7/jdk/src/share/classes/java/awt/peer/ |
H A D | MouseInfoPeer.java | 29 import java.awt.Point; 59 int fillPointWithCoords(Point point);
|
/openjdk7/jdk/src/share/classes/java/awt/dnd/ |
H A D | Autoscroll.java | 29 import java.awt.Point; 74 * @param cursorLocn A <code>Point</code> indicating the 78 public void autoscroll(Point cursorLocn);
|
H A D | DropTargetDropEvent.java | 28 import java.awt.Point; 104 public DropTargetDropEvent(DropTargetContext dtc, Point cursorLocn, int dropAction, int srcActions) { 148 public DropTargetDropEvent(DropTargetContext dtc, Point cursorLocn, int dropAction, int srcActions, boolean isLocal) { 155 * This method returns a <code>Point</code> 162 public Point getLocation() { 271 static final private Point zero = new Point(0,0); 278 private Point location = zero;
|
H A D | DragSourceEvent.java | 28 import java.awt.Point; 143 * This method returns a <code>Point</code> indicating the cursor 148 * @return the <code>Point</code> indicating the cursor location 152 public Point getLocation() { 154 return new Point(x, y);
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/ |
H A D | ListUI.java | 29 import java.awt.Point; 53 public abstract int locationToIndex(JList list, Point location); 65 public abstract Point indexToLocation(JList list, int index);
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | PointerInfo.java | 31 * pointer is and the <code>Point</code> that represents 48 private Point location; 53 PointerInfo(GraphicsDevice device, Point location) { 70 * Returns the <code>Point</code> that represents the coordinates 80 public Point getLocation() {
|
H A D | Point.java | 38 public class Point extends Point2D implements java.io.Serializable { class in inherits:Point2D,java.io.Serializable 40 * The X coordinate of this <code>Point</code>. 51 * The Y coordinate of this <code>Point</code>. 71 public Point() { method in class:Point 77 * the specified <code>Point</code> object. 81 public Point(Point p) { method in class:Point 88 * @param x the X coordinate of the newly constructed <code>Point</code> 89 * @param y the Y coordinate of the newly constructed <code>Point</code> 92 public Point(in method in class:Point [all...] |
/openjdk7/jdk/test/java/beans/XMLEncoder/6777487/ |
H A D | TestEnumMap.java | 39 new EnumMap<Point, String>(Point.class), 46 public enum Point { X, Y, Z } enum in class:TestEnumMap
|
H A D | TestEnumSet.java | 39 EnumSet.noneOf(Point.class), 46 public enum Point { X, Y, Z } enum in class:TestEnumSet
|
/openjdk7/jdk/test/javax/management/mxbean/ |
H A D | TigerMXBean.java | 44 class Point { class in interface:TigerMXBean 46 public Point(double x, double y) { method in class:TigerMXBean.Point 52 if (!(o instanceof Point)) 54 Point p = (Point) o; 67 Point Point = new Point(1.5, 2.5); field in interface:TigerMXBean 69 Point.class.getName(), 70 Point [all...] |
/openjdk7/jdk/src/share/classes/sun/awt/ |
H A D | DefaultMouseInfoPeer.java | 28 import java.awt.Point; 40 public native int fillPointWithCoords(Point point);
|
/openjdk7/jdk/src/share/classes/java/awt/image/ |
H A D | WritableRenderedImage.java | 37 import java.awt.Point; 53 * of Point objects). 127 * Returns an array of Point objects indicating which tiles 133 public Point[] getWritableTileIndices();
|
/openjdk7/jdk/src/share/classes/javax/accessibility/ |
H A D | AccessibleComponent.java | 190 * @param p the Point relative to the coordinate system of the object 191 * @return true if object contains Point; otherwise false 194 public boolean contains(Point p); 204 public Point getLocationOnScreen(); 211 * @return An instance of Point representing the top-left corner of the 217 public Point getLocation(); 224 public void setLocation(Point p); 269 * coordinate Point. 275 public Accessible getAccessibleAt(Point p);
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/ |
H A D | ClusterIngoingConnection.java | 28 import java.awt.Point; 38 private List<Point> controlPoints; 47 this.controlPoints = new ArrayList<Point>(); 69 public void setControlPoints(List<Point> p) { 73 public List<Point> getControlPoints() {
|
H A D | ClusterOutgoingConnection.java | 28 import java.awt.Point; 38 private List<Point> intermediatePoints; 47 this.intermediatePoints = new ArrayList<Point>(); 61 public void setControlPoints(List<Point> p) { 65 public List<Point> getControlPoints() {
|
H A D | InterClusterConnection.java | 28 import java.awt.Point; 40 private List<Point> intermediatePoints; 49 intermediatePoints = new ArrayList<Point>(); 64 public void setControlPoints(List<Point> p) { 68 public List<Point> getControlPoints() {
|
H A D | ClusterInputSlotNode.java | 30 import java.awt.Point; 39 private Point position; 72 public Point getRelativePosition() { 73 return new Point(0, 0); 88 public Point getRelativePosition() { 89 Point p = new Point(thisNode.getPosition()); 122 public void setPosition(Point p) { 126 public Point getPosition() {
|
H A D | ClusterOutputSlotNode.java | 30 import java.awt.Point; 39 private Point position; 72 public Point getRelativePosition() { 73 return new Point(0, 0); 88 public Point getRelativePosition() { 89 Point p = new Point(thisNode.getPosition()); 110 public void setPosition(Point p) { 114 public Point getPosition() {
|
/openjdk7/hotspot/test/compiler/6726999/ |
H A D | Test.java | 34 class Point { class 48 Point p = new Point(); 57 Point p = null; 59 p = new Point(); 68 Point p = new Point(); 70 p = new Point(); 79 Point p[] = new Point[ [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | Caret.java | 28 import java.awt.Point; 134 * @param p the Point to use for the saved position. This 137 public void setMagicCaretPosition(Point p); 145 public Point getMagicCaretPosition();
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/ |
H A D | OutputSlot.java | 26 import java.awt.Point; 47 public Point getRelativePosition() { 48 return new Point(getFigure().getWidth() * (getPosition() + 1) / (getFigure().getOutputSlots().size() + 1), getFigure().getSize().height - Figure.SLOT_WIDTH + Figure.SLOT_START);
|