javaquery/canvas/src/main/java/net/java/html/canvas/Dimension.java
author Anton Epple <toni.epple@eppleton.de>
Thu, 26 Sep 2013 16:33:04 -0700
branchcanvas
changeset 1308 e8429fba8cce
parent 1302 e67363288df1
child 1445 493cae4fd458
permissions -rw-r--r--
documentation
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 /*
    19  * To change this template, choose Tools | Templates
    20  * and open the template in the editor.
    21  */
    22 package net.java.html.canvas;
    23 
    24 /**
    25  * Just a simple class to replace the need of java.awt.Dimension, since we only
    26  * want to use Java core APIs to keep porting simple.
    27  *
    28  * @author antonepple
    29  */
    30 public final class Dimension {
    31 
    32     final double width, height;
    33 
    34     public Dimension(double width, double height) {
    35         this.width = width;
    36         this.height = height;
    37     }
    38 
    39     /**
    40      * Returns the height of this Dimension in double precision
    41      *
    42      * @return the width of this Dimension.
    43      */
    44     public double getWidth() {
    45         return width;
    46     }
    47 
    48     /**
    49      * Returns the width of this Dimension in double precision.
    50      *
    51      * @return the height of this Dimension.
    52      */
    53     public double getHeight() {
    54         return height;
    55     }
    56 }