/* * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.glass.ui.monocle; class OMAPX11PlatformFactory extends OMAPPlatformFactory { @Override protected NativePlatform createNativePlatform() { return new OMAPX11Platform(); } @Override protected int getMajorVersion() { return 1; } @Override protected int getMinorVersion() { return 0; } }