Package org.locationtech.udig.omsbox.core.ModuleDescription

Examples of org.locationtech.udig.omsbox.core.ModuleDescription.Status


                if (element instanceof ViewerFolder) {
                    return ImageCache.getInstance().getImage(ImageCache.CATEGORY);
                }
                if (element instanceof ViewerModule) {
                    ModuleDescription md = ((ViewerModule) element).getModuleDescription();
                    Status status = md.getStatus();
                    if (status == Status.experimental) {
                        return ImageCache.getInstance().getImage(ImageCache.MODULEEXP);
                    } else {
                        return ImageCache.getInstance().getImage(ImageCache.MODULE);
                    }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.omsbox.core.ModuleDescription.Status

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.