KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > activities > IActivityRegistry


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11
12 package org.eclipse.ui.internal.activities;
13
14 import java.util.List JavaDoc;
15
16 public interface IActivityRegistry {
17
18     void addActivityRegistryListener(
19             IActivityRegistryListener activityRegistryListener);
20
21     List JavaDoc getActivityRequirementBindingDefinitions();
22
23     List JavaDoc getActivityDefinitions();
24
25     List JavaDoc getActivityPatternBindingDefinitions();
26
27     List JavaDoc getCategoryActivityBindingDefinitions();
28
29     List JavaDoc getCategoryDefinitions();
30
31     List JavaDoc getDefaultEnabledActivities();
32
33     void removeActivityRegistryListener(
34             IActivityRegistryListener activityRegistryListener);
35 }
36
Popular Tags