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    /**
020     * Abstract class containing common methods for all devices
021     *
022     * @author Milen Dyankov
023     * @author Michael C. Han
024     */
025    public abstract class AbstractDevice implements Device {
026    
027            @Override
028            public String toString() {
029                    StringBundler sb = new StringBundler(23);
030    
031                    sb.append("{brand=");
032                    sb.append(getBrand());
033                    sb.append(", browser=");
034                    sb.append(getBrowser());
035                    sb.append(", browserVersion=");
036                    sb.append(getBrowserVersion());
037                    sb.append(", capabiltiies=");
038                    sb.append(getCapabilities());
039                    sb.append(", model=");
040                    sb.append(getModel());
041                    sb.append(", os=");
042                    sb.append(getOS());
043                    sb.append(", osVersion=");
044                    sb.append(getOSVersion());
045                    sb.append(", pointingMethod=");
046                    sb.append(getPointingMethod());
047                    sb.append(", qwertyKeyboard=");
048                    sb.append(hasQwertyKeyboard());
049                    sb.append(", screenSize=");
050                    sb.append(getScreenSize());
051                    sb.append(", tablet=");
052                    sb.append(isTablet());
053                    sb.append("}");
054    
055                    return sb.toString();
056            }
057    
058    }