blob: d5279404c8e3621604240146239abe0bdfc60ce4 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* 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 com.intellij.openapi.externalSystem.model.task;
import com.intellij.openapi.externalSystem.model.ProjectSystemId;
import com.intellij.openapi.externalSystem.model.project.AbstractExternalEntityData;
import com.intellij.openapi.externalSystem.model.project.ExternalConfigPathAware;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Container for external system task information.
*
* @author Denis Zhdanov
* @since 5/15/13 10:59 AM
*/
public class TaskData extends AbstractExternalEntityData implements ExternalConfigPathAware, Comparable<TaskData> {
private static final long serialVersionUID = 1L;
@NotNull private final String myName;
@NotNull private final String myLinkedExternalProjectPath;
@Nullable private final String myDescription;
public TaskData(@NotNull ProjectSystemId owner, @NotNull String name, @NotNull String path, @Nullable String description) {
super(owner);
myName = name;
myLinkedExternalProjectPath = path;
myDescription = description;
}
@NotNull
public String getName() {
return myName;
}
@NotNull
public String getLinkedExternalProjectPath() {
return myLinkedExternalProjectPath;
}
@Nullable
public String getDescription() {
return myDescription;
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + myName.hashCode();
result = 31 * result + myLinkedExternalProjectPath.hashCode();
result = 31 * result + (myDescription != null ? myDescription.hashCode() : 0);
return result;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
TaskData data = (TaskData)o;
if (myDescription != null ? !myDescription.equals(data.myDescription) : data.myDescription != null) return false;
if (!myLinkedExternalProjectPath.equals(data.myLinkedExternalProjectPath)) return false;
if (!myName.equals(data.myName)) return false;
return true;
}
@Override
public int compareTo(@NotNull TaskData that) {
return myName.compareTo(that.getName());
}
@Override
public String toString() {
return myName;
}
}