/* * 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.internal.gradle; import com.google.common.collect.Sets; import org.gradle.tooling.internal.consumer.converters.TaskNameComparator; import java.io.Serializable; import java.util.SortedSet; /** * A consumer-side implementation of {@link org.gradle.tooling.model.Task}. */ public class ConsumerProvidedTask implements TaskListingLaunchable, Serializable { private String path; private String name; private String description; private String displayName; public String getPath() { return path; } public ConsumerProvidedTask setPath(String path) { this.path = path; return this; } public String getName() { return name; } public ConsumerProvidedTask setName(String name) { this.name = name; return this; } public String getDisplayName() { return displayName; } public ConsumerProvidedTask setDisplayName(String displayName) { this.displayName = displayName; return this; } public String getDescription() { return description; } public ConsumerProvidedTask setDescription(String description) { this.description = description; return this; } public SortedSet<String> getTaskNames() { // TODO use comparator SortedSet<String> result = Sets.newTreeSet(new TaskNameComparator()); result.add(getPath()); return result; } @Override public String toString() { return "GradleTask{" + "name='" + name + '\'' + " path='" + path + '\'' + '}'; } }