/* * Copyright 2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.gradle.tooling.model.idea; import org.gradle.api.Incubating; import org.gradle.api.Nullable; import org.gradle.tooling.model.*; /** * Represents information about the IDEA module. * * @since 1.0-milestone-5 */ public interface IdeaModule extends HierarchicalElement, HasGradleProject { /** * Returns the Java language settings for this element, or {@code null} if this element is not a Java element. * * @return The Java language settings. * @throws UnsupportedMethodException For Gradle versions older than 2.11, where this method is not supported. * @since 2.11 */ @Nullable @Incubating IdeaJavaLanguageSettings getJavaLanguageSettings() throws UnsupportedMethodException; /** * Returns the name of the JDK. * * @return The name of the JDK. * @since 3.4 */ @Incubating String getJdkName() throws UnsupportedMethodException; /** * All content roots. Most idea modules have a single content root. * * @return content roots * @since 1.0-milestone-5 */ DomainObjectSet<? extends IdeaContentRoot> getContentRoots(); /** * The gradle project that is associated with this module. * Typically, a single module corresponds to a single gradle project. * <p> * See {@link HasGradleProject} * * @return associated gradle project * @since 1.0-milestone-5 */ GradleProject getGradleProject(); /** * Returns the project of this module. * Alias to {@link #getProject()} * * @return idea project * @since 1.0-milestone-5 */ IdeaProject getParent(); /** * Returns the project of this module. * Alias to {@link #getParent()} * * @return idea project * @since 1.0-milestone-5 */ IdeaProject getProject(); /** * Returns information about idea compiler output (output dirs, inheritance of output dir, etc.) * * @since 1.0-milestone-5 */ IdeaCompilerOutput getCompilerOutput(); /** * dependencies of this module (i.e. module dependencies, library dependencies, etc.) * * @return dependencies * @since 1.0-milestone-5 */ DomainObjectSet<? extends IdeaDependency> getDependencies(); }