blob: c2d85e1bb4be9c9a4053a94cf17282cfb4ff9357 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.views.markers.internal;
import org.eclipse.core.resources.IMarker;
/**
* Represents a marker visible in the Tasks view. Additional members should be added
* to this class if new fields are added to the Tasks view. Such members should be
* initialized in the constructor, and accessed via get methods rather than accessing
* the IMarker instance directly. This is necessary to support sorting in a reasonable
* time bound.
*/
public class TaskMarker extends ConcreteMarker {
private int priority;
private int done;
/**
* @param toCopy
*/
public TaskMarker(IMarker toCopy) {
super(toCopy);
}
public void refresh() {
super.refresh();
priority = getMarker().getAttribute(IMarker.PRIORITY,
IMarker.PRIORITY_NORMAL);
done = -1;
if (getMarker().getAttribute(IMarker.USER_EDITABLE, true)) {
done = 0;
if (getMarker().getAttribute(IMarker.DONE, false)) {
done = 1;
}
}
}
public int getPriority() {
return priority;
}
public int getDone() {
return done;
}
}