Examples of DimensionTranslator


Examples of com.volantis.mcs.cli.uaprofclient.translator.DimensionTranslator

        DuplicateTranslator model = new DuplicateTranslator("Model",
                "modelnum", "prodname", this);
        customProcessorList.add(model);
       
        // ScreenSize
        DimensionTranslator screenSize =
                new DimensionTranslator("ScreenSize",
                        "fullpixels", "x", "y", this);
        customProcessorList.add(screenSize);

        // ScreenSizeChar
        DimensionTranslator screenSizeChar =
                new DimensionTranslator("ScreenSizeChar",
                        "characters", "x", "y", this);
        customProcessorList.add(screenSizeChar);
       
        // JavaEnabled / JavaPlatform
        JavaTranslator java =
                new JavaTranslator(this);
        customProcessorList.add(java);
       
        //  MmsMaxImageResolution
        DimensionTranslator mmsMaxImageResolution =
                new DimensionTranslator("MmsMaxImageResolution",
                        "maxmmsimage", "width", "height", this);
        customProcessorList.add(mmsMaxImageResolution);
       
    }
View Full Code Here
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.