Package org.apache.ace.webui.domain

Examples of org.apache.ace.webui.domain.NamedFeatureObject


    public NamedObject getNamedObject(RepositoryObject object) {
        if (object instanceof ArtifactObject) {
            return new NamedArtifactObject((ArtifactObject) object);
        }
        else if (object instanceof FeatureObject) {
            return new NamedFeatureObject((FeatureObject) object);
        }
        else if (object instanceof DistributionObject) {
            return new NamedDistributionObject((DistributionObject) object);
        }
        else if (object instanceof StatefulTargetObject) {
View Full Code Here

TOP

Related Classes of org.apache.ace.webui.domain.NamedFeatureObject

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.