Package org.clarent.ivyidea.config.model

Examples of org.clarent.ivyidea.config.model.ArtifactTypeSettings


        return null;
    }

    @Nullable
    public static ArtifactTypeSettings.DependencyCategory determineCategory(@NotNull Project project, @NotNull Artifact artifact) {
        final ArtifactTypeSettings typeSettings = IvyIdeaConfigHelper.getArtifactTypeSettings(project);
        if (typeSettings == null) {
            return null;
        }
        return typeSettings.getCategoryForType(artifact.getType());
    }
View Full Code Here

TOP

Related Classes of org.clarent.ivyidea.config.model.ArtifactTypeSettings

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.