javauis/eswt_qt/xlibutils/java/src/com/nokia/mj/impl/uitestutils/Point.java
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 11 Jun 2010 13:33:44 +0300
changeset 35 85266cc22c7f
parent 21 2a9601315dfc
permissions -rw-r--r--
Revision: v2.2.1 Kit: 2010123


package com.nokia.mj.impl.uitestutils;

/**
 * Class for storing point, i.e. x and y values.
 * This is used in matric calculations.
 *
 * @author ktuokkol
 */
public class Point {
    public float x;
    public float y;
    
    /**
     * Ctor
     */
    public Point() {
        x = 0f;
        y = 0f;
    }

    /**
     * Ctor
     * @param x
     * @param y
     */
    public Point(float x, float y) {
        this.x = x;
        this.y = y;
    }
    
}