blob: 589383c35f7fb448d83f32f8572b1cdff2c34033 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* 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.ui.navigator;
/**
* A descriptive construct to relay information about a menu insertion point;
* including the name of the insertion point and whether the item should be
* rendered as a separator or group marker.
*
* @since 3.2
*
*/
public final class MenuInsertionPoint {
private String name;
private boolean isSeparator;
private String toString;
/**
*
* @param aName
* The name that clients will refer to when inserting items into
* the menu at this point.
* @param toMakeASeparator
* A value of true will cause the point to be rendered as a
* org.eclipse.jface.action.Separator (a "bar" in the menu);
* false will cause the point to be rendered as a
* org.eclipse.jface.action.GroupMarker.
*/
public MenuInsertionPoint(String aName, boolean toMakeASeparator) {
name = aName;
isSeparator = toMakeASeparator;
}
/**
*
* @return True if the point should be rendered as a
* org.eclipse.jface.action.Separator (a "bar" in the menu); or
* false if the point should be rendered as a
* org.eclipse.jface.action.GroupMarker.
*/
public boolean isSeparator() {
return isSeparator;
}
/**
*
* @return The name that clients will refer to when inserting items into the
* menu at this point.
*/
public String getName() {
return name;
}
public String toString() {
if(toString == null) {
toString = "MenuInsertionPoint[name=\""+name+"\", isSeparator="+isSeparator+"]"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
return toString;
}
}