Package org.apache.isis.viewer.dnd.view

Examples of org.apache.isis.viewer.dnd.view.Look


public class DatePickerControl {

    private static final Look LINUX_LOOK = new LinuxLook();

    public static View getPicker(final Content content) {
        final Look look = LookFactory.getInstalledLook();
        if (look.getClass().isInstance(LINUX_LOOK)) {
            return new LinuxDatePicker(content);
        }
        return new SimpleDatePicker(content);
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.dnd.view.Look

Copyright © 2018 www.massapicom. 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.