blob: 7dadf7081d4870e9097312af186f4feb6f52122d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.activities;
/**
* An instance of this interface represents a binding between a category and an
* activity.
*
* <p>
* This interface is not intended to be extended or implemented by clients.
* </p>
*
* @since 3.0
* @see IActivity
* @see ICategory
*/
public interface ICategoryActivityBinding extends Comparable {
/**
* Returns the identifier of the activity represented in this binding.
*
* @return the identifier of the activity represented in this binding.
* Guaranteed not to be <code>null</code>.
*/
String getActivityId();
/**
* Returns the identifier of the category represented in this binding.
*
* @return the identifier of the category represented in this binding.
* Guaranteed not to be <code>null</code>.
*/
String getCategoryId();
}