KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > text > javadoc > IJavaDocTagConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 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.jdt.internal.ui.text.javadoc;
13
14 /**
15  * Javadoc tag constants.
16  *
17  * @since 3.0
18  */

19 public interface IJavaDocTagConstants {
20
21     /** Javadoc general tags */
22     public static final String JavaDoc[] JAVADOC_GENERAL_TAGS= new String JavaDoc[] { "@author", "@deprecated", "@docRoot", "@exception", "@inheritDoc", "@link", "@linkplain", "@param", "@return", "@see", "@serial", "@serialData", "@serialField", "@since", "@throws", "@value", "@version" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$ //$NON-NLS-8$ //$NON-NLS-9$ //$NON-NLS-10$ //$NON-NLS-11$ //$NON-NLS-12$ //$NON-NLS-13$ //$NON-NLS-14$ //$NON-NLS-15$ //$NON-NLS-16$ //$NON-NLS-17$
23

24     /** Javadoc link tags */
25     public static final String JavaDoc[] JAVADOC_LINK_TAGS= new String JavaDoc[] { "@docRoot", "@inheritDoc", "@link", "@linkplain" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
26

27     /** Javadoc parameter tags */
28     public static final String JavaDoc[] JAVADOC_PARAM_TAGS= new String JavaDoc[] { "@exception", "@param", "@serialField", "@throws" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
29

30     /** Javadoc reference tags */
31     public static final String JavaDoc[] JAVADOC_REFERENCE_TAGS= new String JavaDoc[] { "@see" }; //$NON-NLS-1$
32

33     /** Javadoc root tags */
34     public static final String JavaDoc[] JAVADOC_ROOT_TAGS= new String JavaDoc[] { "@author", "@deprecated", "@return", "@see", "@serial", "@serialData", "@since", "@version", "@inheritDoc", "@category", "@value", "@literal", "@code" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$ //$NON-NLS-8$ //$NON-NLS-9$ //$NON-NLS-10$ //$NON-NLS-11$ //$NON-NLS-12$ //$NON-NLS-13$
35

36     /** Javadoc tag prefix */
37     public static final char JAVADOC_TAG_PREFIX= '@';
38 }
39
Popular Tags