blob: 806ae6f920c33c563b0c2cc4edf1d5698b7335cc [file] [log] [blame]
package org.eclipse.ptp.pldt.mpi.core.views;
import org.eclipse.ptp.pldt.common.views.SimpleTableMarkerView;
import org.eclipse.ptp.pldt.mpi.core.Messages;
import org.eclipse.ptp.pldt.mpi.core.MpiIDs;
import org.eclipse.ptp.pldt.mpi.core.MpiPlugin;
/**
* An MPI artifact view based on SimpleTableView <br>
* Note that the ID must be unique.
* <p>
* 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
*/
public class MPITableView extends SimpleTableMarkerView {
public MPITableView() {
super(MpiPlugin.getDefault(), Messages.getString("MPITableView_ARTIFACT"), Messages.getString("MPITableView_ARTIFACTS"), //$NON-NLS-1$ //$NON-NLS-2$
Messages.getString("MPITableView_CONSTRUCT"), MpiIDs.MARKER_ID); //$NON-NLS-1$
}
}