01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 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.part;
11:
12: import org.eclipse.jface.action.GroupMarker;
13:
14: /**
15: * A group marker used by EditorActionBars to delineate CoolItem groups.
16: * Use this marker when contributing to the ToolBar for the EditorActionBar.
17: * <p>
18: * This class may be instantiated; it is not intended to be subclassed.
19: * </p>
20: */
21: public class CoolItemGroupMarker extends GroupMarker {
22: /**
23: * Create a new group marker with the given name.
24: * The group name must not be <code>null</code> or the empty string.
25: * The group name is also used as the item id.
26: *
27: * Note that CoolItemGroupMarkers must have a group name and the name must
28: * be unique.
29: *
30: * @param groupName the name of the group
31: */
32: public CoolItemGroupMarker(String groupName) {
33: super(groupName);
34: }
35: }
|