blob: 6dd4684f781e1679590185202d15ca4713ec14d2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.views.markers.internal;
import org.eclipse.core.resources.IMarker;
/**
*
*/
public class ProblemMarker extends ConcreteMarker {
private int severity;
public ProblemMarker(IMarker toCopy) {
super(toCopy);
severity = toCopy.getAttribute(IMarker.SEVERITY, -1);
}
public int getSeverity() {
return severity;
}
}