KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > text > IJavaPartitions


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

11 package org.eclipse.jdt.internal.ui.text;
12
13
14 public interface IJavaPartitions {
15     
16     /**
17      * The name of the Java partitioning.
18      * @since 3.0
19      */

20     public final static String JavaDoc JAVA_PARTITIONING= "___java_partitioning"; //$NON-NLS-1$
21

22     public final static String JavaDoc JAVA_SINGLE_LINE_COMMENT= "__java_singleline_comment"; //$NON-NLS-1$
23
public final static String JavaDoc JAVA_MULTI_LINE_COMMENT= "__java_multiline_comment"; //$NON-NLS-1$
24
public final static String JavaDoc JAVA_DOC= "__java_javadoc"; //$NON-NLS-1$
25
public final static String JavaDoc JAVA_STRING= "__java_string"; //$NON-NLS-1$
26
public final static String JavaDoc JAVA_CHARACTER= "__java_character"; //$NON-NLS-1$
27
}
28
Popular Tags