blob: 6e0ba77e062637b09a2b739c905f096c2d74ca2f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tasktop Technologies - initial API and implementation
* GitHub Inc. - fix for bug 355557
* Francois Chouinard - Move OWNER and BRANCH to GerritQueryResultSchema
*******************************************************************************/
package org.eclipse.mylyn.internal.gerrit.core;
import org.eclipse.mylyn.tasks.core.data.DefaultTaskSchema;
import org.eclipse.mylyn.tasks.core.data.TaskAttribute;
/**
* @author Steffen Pingel
*/
public class GerritTaskSchema extends GerritQueryResultSchema {
private static final GerritTaskSchema instance = new GerritTaskSchema();
public static GerritTaskSchema getDefault() {
return instance;
}
private final DefaultTaskSchema parent = DefaultTaskSchema.getInstance();
public final Field UPLOADED = inheritFrom(parent.DATE_CREATION).create();
public final Field DESCRIPTION = inheritFrom(parent.DESCRIPTION).addFlags(Flag.READ_ONLY).create();
public final Field OBJ_REVIEW = createField("org.eclipse.gerrit.Review", Messages.GerritTaskSchema_Review, TaskAttribute.TYPE_LONG_TEXT); //$NON-NLS-1$
public final Field CAN_PUBLISH = createField("org.eclipse.gerrit.CanPublish", Messages.GerritTaskSchema_Publish, TaskAttribute.TYPE_BOOLEAN); //$NON-NLS-1$
public final Field NEW_COMMENT = inheritFrom(parent.NEW_COMMENT).create();
}