KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > rcp > extensionpoint > IEPProcessor


1 /*
2  * Created on Oct 28, 2004
3  * by Alexander Bieber
4  *
5  */

6 package com.nightlabs.rcp.extensionpoint;
7
8 import org.eclipse.core.runtime.IConfigurationElement;
9
10 /**
11  * @author Alexander Bieber
12  */

13 public interface IEPProcessor {
14     public abstract String JavaDoc getExtensionPointID();
15     
16     public abstract void processElement(IConfigurationElement element) throws EPProcessorException;
17   
18   public void process() throws EPProcessorException;
19     
20 }
21
Popular Tags