/******************************************************************************* * Copyright (c) 2005, 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.core; public interface JavadocConstants { String ANCHOR_PREFIX_END= "\""; //$NON-NLS-1$ char[] ANCHOR_PREFIX_START= "<A NAME=\"".toCharArray(); //$NON-NLS-1$ int ANCHOR_PREFIX_START_LENGHT= ANCHOR_PREFIX_START.length; char[] ANCHOR_SUFFIX= "</A>".toCharArray(); //$NON-NLS-1$ int ANCHOR_SUFFIX_LENGTH= JavadocConstants.ANCHOR_SUFFIX.length; char[] CONSTRUCTOR_DETAIL= "<!-- ========= CONSTRUCTOR DETAIL ======== -->".toCharArray(); //$NON-NLS-1$ char[] CONSTRUCTOR_SUMMARY= "<!-- ======== CONSTRUCTOR SUMMARY ======== -->".toCharArray(); //$NON-NLS-1$ char[] FIELD_DETAIL= "<!-- ============ FIELD DETAIL =========== -->".toCharArray(); //$NON-NLS-1$ char[] FIELD_SUMMARY= "<!-- =========== FIELD SUMMARY =========== -->".toCharArray(); //$NON-NLS-1$ char[] ENUM_CONSTANT_SUMMARY= "<!-- =========== ENUM CONSTANT SUMMARY =========== -->".toCharArray(); //$NON-NLS-1$ char[] ANNOTATION_TYPE_REQUIRED_MEMBER_SUMMARY= "<!-- =========== ANNOTATION TYPE REQUIRED MEMBER SUMMARY =========== -->".toCharArray(); //$NON-NLS-1$ char[] ANNOTATION_TYPE_OPTIONAL_MEMBER_SUMMARY= "<!-- =========== ANNOTATION TYPE OPTIONAL MEMBER SUMMARY =========== -->".toCharArray(); //$NON-NLS-1$ char[] END_OF_CLASS_DATA= "<!-- ========= END OF CLASS DATA ========= -->".toCharArray(); //$NON-NLS-1$ String HTML_EXTENSION= ".html"; //$NON-NLS-1$ String INDEX_FILE_NAME= "index.html"; //$NON-NLS-1$ char[] METHOD_DETAIL= "<!-- ============ METHOD DETAIL ========== -->".toCharArray(); //$NON-NLS-1$ char[] METHOD_SUMMARY= "<!-- ========== METHOD SUMMARY =========== -->".toCharArray(); //$NON-NLS-1$ char[] NESTED_CLASS_SUMMARY= "<!-- ======== NESTED CLASS SUMMARY ======== -->".toCharArray(); //$NON-NLS-1$ String PACKAGE_FILE_NAME= "package-summary.html"; //$NON-NLS-1$ char[] SEPARATOR_START= "<!-- =".toCharArray(); //$NON-NLS-1$ char[] START_OF_CLASS_DATA= "<!-- ======== START OF CLASS DATA ======== -->".toCharArray(); //$NON-NLS-1$ int START_OF_CLASS_DATA_LENGTH= JavadocConstants.START_OF_CLASS_DATA.length; }