1 /******************************************************************************* 2 * Copyright (c) 2000, 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.ui.views.markers.internal; 12 13 import org.eclipse.core.resources.IMarker; 14 15 /** 16 * Represents a marker visible in the Bookmarks view. Currently, this adds no additional 17 * fields to the ConcreteMarker class. However, if additional fields were added to the 18 * bookmark view that are not general to all views, these fields would be added to this 19 * class. 20 */ 21 public class BookmarkMarker extends ConcreteMarker { 22 23 /** 24 * @param toCopy 25 */ 26 public BookmarkMarker(IMarker toCopy) { 27 super(toCopy); 28 } 29 30 } 31