blob: 430b00166fa9a3da4bad16ec1f27e190572aebb9 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2007 IBM Corporation.
* 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.ptp.pldt.lapi.views;
import org.eclipse.ptp.pldt.common.views.SimpleTableMarkerView;
import org.eclipse.ptp.pldt.lapi.LapiIDs;
import org.eclipse.ptp.pldt.lapi.LapiPlugin;
/**
* A LAPI artifact view based on SimpleTableView Note that the ID must be unique.
*
*/
public class LapiArtifactView extends SimpleTableMarkerView
{
public LapiArtifactView()
{
// if you need to read icon images, etc. from the plug-in, be sure to pass
// in an actual Plugin class instance for first arg
super(LapiPlugin.getDefault(), "LAPI Artifact", "LAPI Artifacts", "Construct", LapiIDs.MARKER_ID);
}
}