blob: 9f3e1568058c05904ba63e67e94a5858b645449e [file] [log] [blame]
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved.
This file is made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
 
Contributors:
**********************************************************************/
package org.eclipse.ui.internal;
import org.eclipse.jface.action.Separator;
/**
*/
public class CoolItemGroupSeparator extends Separator implements ICoolItemGroup {
private String contributingId;
public CoolItemGroupSeparator(String groupName, String contributingId) {
super(groupName);
this.contributingId = contributingId;
}
/**
*/
public String getContributingId() {
return contributingId;
}
}