Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 85e8d8799239e5a5143795e3fbfdc40ad60cfe7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ***************************************************************************************************
 * Licensed Materials - Property of IBM
 *
 * 5724-I66
 * 
 * © Copyright IBM Corporation 2004. All Rights Reserved.
 * 
 * Note to U.S. Government Users Restricted Rights:  Use, duplication or disclosure restricted by GSA 
 * ADP  Schedule Contract with IBM Corp.
 *  
 *****************************************************************************************************/
package org.eclipse.jst.common.internal.annotations.registry;

/**
 * This method will be called by the AnnotationTagRegistry
 * when it is time to register the tags for a given
 * TagSet.  An AnnotationTagDynamicInitializer defined
 * using the annotationTagDynamicInitializer.
 * 
 * @see com.ibm.wtp.annotations.registry.AnnotationTagRegistry
 */
public interface AnnotationTagDynamicInitializer {
	void registerTags();
}

Back to the top