001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.kernel.mobile.device;
016    
017    import com.liferay.portal.kernel.util.StringBundler;
018    
019    import java.io.Serializable;
020    
021    /**
022     * @author Michael C. Han
023     */
024    public class Dimensions implements Serializable {
025    
026            public static final Dimensions UNKNOWN = new Dimensions(-1, -1);
027    
028            public Dimensions(float height, float width) {
029                    _height = height;
030                    _width = width;
031            }
032    
033            public float getHeight() {
034                    return _height;
035            }
036    
037            public float getWidth() {
038                    return _width;
039            }
040    
041            @Override
042            public String toString() {
043                    StringBundler sb = new StringBundler(5);
044    
045                    sb.append("{height=");
046                    sb.append(_height);
047                    sb.append(", width=");
048                    sb.append(_width);
049                    sb.append("}");
050    
051                    return sb.toString();
052            }
053    
054            private float _height;
055            private float _width;
056    
057    }