Package org.vaadin.teemu.clara.demo

Source Code of org.vaadin.teemu.clara.demo.ClaraLogoEmbedded

package org.vaadin.teemu.clara.demo;

import com.vaadin.server.ThemeResource;
import com.vaadin.ui.Embedded;

@SuppressWarnings("serial")
public class ClaraLogoEmbedded extends Embedded {

    public ClaraLogoEmbedded() {
        super(null, new ThemeResource("clara-logo-180x180.png"));
        // Reduce the size to support retina resolution.
        setHeight("90px");
        setWidth("90px");
    }

}
TOP

Related Classes of org.vaadin.teemu.clara.demo.ClaraLogoEmbedded

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.