~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to rpm/org.eclipse.linuxtools.rpm.ui.editor/src/org/eclipse/linuxtools/internal/rpm/ui/editor/ISpecfileSpecialSymbols.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2009 Red Hat, Inc.
 
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
 *     Red Hat - initial API and implementation
 
10
 *******************************************************************************/
 
11
package org.eclipse.linuxtools.internal.rpm.ui.editor;
 
12
 
 
13
/**
 
14
 * Constants for all the special symbols in spec file.
 
15
 * 
 
16
 */
 
17
public interface ISpecfileSpecialSymbols {
 
18
        /**
 
19
         * Identifier for macro start - long one.
 
20
         */
 
21
        String MACRO_START_LONG = "%{"; //$NON-NLS-1$
 
22
        /**
 
23
         * Identifier for macro end - long one.
 
24
         */
 
25
        String MACRO_END_LONG = "}"; //$NON-NLS-1$
 
26
        
 
27
        /**
 
28
         * Identifier for macro start - short one.
 
29
         */
 
30
        String MACRO_START_SHORT = "%"; //$NON-NLS-1$
 
31
        /**
 
32
         * Identifier for comment start. Comment is from this symbol till the line
 
33
         * end.
 
34
         */
 
35
        String COMMENT_START = "#"; //$NON-NLS-1$
 
36
}