Package org.wicketstuff.gmap.api

Source Code of org.wicketstuff.gmap.api.GSize

/*
* $Id$
* $Revision$
* $Date$
*
* ====================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*  http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.wicketstuff.gmap.api;

import org.wicketstuff.gmap.js.Constructor;

/**
* Represents an Maps API's GSize that contains width and height.
*
* @author Robert Jacolin, Vincent Demay, Gregory Maes - Anyware Technologies
*/
public class GSize implements GValue
{

    private static final long serialVersionUID = 5827792929263787358L;
    private final float width;
    private final float height;

    public GSize(float width, float height)
    {
        this.width = width;
        this.height = height;
    }

    public float getWidth()
    {
        return width;
    }

    public float getHeight()
    {
        return height;
    }

    /**
     * @see wicket.contrib.gmap.api.GValue#getJSconstructor()
     */
    @Override
    public String getJSconstructor()
    {
        return new Constructor("google.maps.Size").add(width).add(height).toJS();
    }

    /**
     * @see java.lang.Object#hashCode()
     */
    @Override
    public int hashCode()
    {
        final int PRIME = 31;
        int result = 1;
        result = PRIME * result + Float.floatToIntBits(height);
        result = PRIME * result + Float.floatToIntBits(width);
        return result;
    }

    /**
     * @see java.lang.Object#equals(java.lang.Object)
     */
    @Override
    public boolean equals(Object obj)
    {
        if (this == obj)
        {
            return true;
        }
        if (!super.equals(obj))
        {
            return false;
        }
        if (getClass() != obj.getClass())
        {
            return false;
        }
        final GSize other = (GSize) obj;
        if (Float.floatToIntBits(height) != Float.floatToIntBits(other.height))
        {
            return false;
        }
        if (Float.floatToIntBits(width) != Float.floatToIntBits(other.width))
        {
            return false;
        }
        return true;
    }
}
TOP

Related Classes of org.wicketstuff.gmap.api.GSize

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.