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