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.internal.activities;
11:
12: import java.util.List;
13:
14: public interface IActivityRegistry {
15:
16: void addActivityRegistryListener(
17: IActivityRegistryListener activityRegistryListener);
18:
19: List getActivityRequirementBindingDefinitions();
20:
21: List getActivityDefinitions();
22:
23: List getActivityPatternBindingDefinitions();
24:
25: List getCategoryActivityBindingDefinitions();
26:
27: List getCategoryDefinitions();
28:
29: List getDefaultEnabledActivities();
30:
31: void removeActivityRegistryListener(
32: IActivityRegistryListener activityRegistryListener);
33: }
|