org.gradle.tooling.model.eclipse.HierarchicalEclipseProject Maven / Gradle / Ivy
/*
* 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.eclipse;
import org.gradle.tooling.model.DomainObjectSet;
import org.gradle.tooling.model.HasGradleProject;
import org.gradle.tooling.model.HierarchicalElement;
import org.gradle.tooling.model.UnsupportedMethodException;
import java.io.File;
/**
* Represents the basic information about an Eclipse project.
*
* @since 1.0-milestone-3
*/
public interface HierarchicalEclipseProject extends HierarchicalElement, HasGradleProject {
/**
* {@inheritDoc}
*/
HierarchicalEclipseProject getParent();
/**
* {@inheritDoc}
*/
DomainObjectSet extends HierarchicalEclipseProject> getChildren();
/**
* Returns the project dependencies for this project.
*
* @return The project dependencies. Returns an empty set if the project has no project dependencies.
* @since 1.0-milestone-3
*/
DomainObjectSet extends EclipseProjectDependency> getProjectDependencies();
/**
* Returns the source directories for this project.
*
* @return The source directories. Returns an empty set if the project has no source directories.
* @since 1.0-milestone-3
*/
DomainObjectSet extends EclipseSourceDirectory> getSourceDirectories();
/**
* Returns the linked resources for this project.
*
* @return The linked resources.
* @since 1.0-milestone-4
*/
DomainObjectSet extends EclipseLinkedResource> getLinkedResources();
/**
* Returns the project directory for this project.
*
* @return The project directory.
* @since 1.0-milestone-9
* @throws UnsupportedMethodException For Gradle versions older than 1.0-milestone-9, where this method is not supported.
*/
File getProjectDirectory() throws UnsupportedMethodException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy