KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ltk > internal > core > refactoring > IRefactoringSerializationConstants


1 /*******************************************************************************
2  * Copyright (c) 2005, 2006 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 package org.eclipse.ltk.internal.core.refactoring;
12
13 import org.eclipse.ltk.core.refactoring.RefactoringSessionDescriptor;
14
15 /**
16  * Interface for constants related to refactoring serialization.
17  *
18  * @since 3.2
19  */

20 public interface IRefactoringSerializationConstants {
21
22     /** The comment attribute */
23     public static final String JavaDoc ATTRIBUTE_COMMENT= "comment"; //$NON-NLS-1$
24

25     /** The description attribute */
26     public static final String JavaDoc ATTRIBUTE_DESCRIPTION= "description"; //$NON-NLS-1$
27

28     /** The flags attribute */
29     public static final String JavaDoc ATTRIBUTE_FLAGS= "flags"; //$NON-NLS-1$
30

31     /** The id attribute */
32     public static final String JavaDoc ATTRIBUTE_ID= "id"; //$NON-NLS-1$
33

34     /** The project attribute */
35     public static final String JavaDoc ATTRIBUTE_PROJECT= "project"; //$NON-NLS-1$
36

37     /** The time stamp attribute */
38     public static final String JavaDoc ATTRIBUTE_STAMP= "stamp"; //$NON-NLS-1$
39

40     /** The version attribute */
41     public static final String JavaDoc ATTRIBUTE_VERSION= "version"; //$NON-NLS-1$
42

43     /** The current version tag */
44     public static final String JavaDoc CURRENT_VERSION= RefactoringSessionDescriptor.VERSION_1_0;
45
46     /** The refactoring element */
47     public static final String JavaDoc ELEMENT_REFACTORING= "refactoring"; //$NON-NLS-1$
48

49     /** The session element */
50     public static final String JavaDoc ELEMENT_SESSION= "session"; //$NON-NLS-1$
51

52     /** The output encoding */
53     public static final String JavaDoc OUTPUT_ENCODING= "utf-8"; //$NON-NLS-1$
54

55     /** The indent flag */
56     public static final String JavaDoc OUTPUT_INDENT= "yes"; //$NON-NLS-1$
57

58     /** The output method */
59     public static final String JavaDoc OUTPUT_METHOD= "xml"; //$NON-NLS-1$
60
}
61
Popular Tags