Examples of ArtifactTypeSettings


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
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.