~ubuntu-branches/ubuntu/saucy/commons-configuration/saucy

« back to all changes in this revision

Viewing changes to src/java/org/apache/commons/configuration/plist/PropertyListParserConstants.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-07-01 16:29:44 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130701162944-98waq5gogha5gpn1
Tags: 1.9-1
* New upstream release
* debian/control:
  - Updated Standards-Version to 3.9.4 (no changes)
  - Use canonical URLs for the Vcs-* fields
  - Added new build dependencies (libjavacc-maven-plugin-java, junit4)
  - Upgraded the dependency on the Servlet API (2.5 -> 3.0)
  - Removed the dependency on the Activation Framework (glassfish-activation)
  - Replaced the dependency on glassfish-mail with libgnumail-java
  - Removed the unused dependencies:
    liblog4j1.2-java-doc, libmaven-assembly-plugin-java
  - Replaced the dependency on libcommons-jexl-java by libcommons-jexl2-java
* debian/watch: Changed to point the official Apache distribution server
* Removed the obsolete file debian/ant.properties
* Installed the upstream changelog in the binary packages
* Added the report plugins to maven.ignoreRules
* Added the classpath attribute to the jar manifest

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Generated By:JavaCC: Do not edit this line. PropertyListParserConstants.java */
2
 
package org.apache.commons.configuration.plist;
3
 
 
4
 
interface PropertyListParserConstants
5
 
{
6
 
    int EOF = 0;
7
 
    int ARRAY_BEGIN = 5;
8
 
    int ARRAY_END = 6;
9
 
    int ARRAY_SEPARATOR = 7;
10
 
    int DICT_BEGIN = 8;
11
 
    int DICT_END = 9;
12
 
    int DICT_SEPARATOR = 10;
13
 
    int EQUAL = 11;
14
 
    int DATA_START = 12;
15
 
    int DATA_END = 13;
16
 
    int DATE_START = 14;
17
 
    int QUOTE = 15;
18
 
    int LETTER = 16;
19
 
    int WHITE = 17;
20
 
    int HEXA = 18;
21
 
    int DATA = 19;
22
 
    int DATE = 20;
23
 
    int STRING = 21;
24
 
    int QUOTED_STRING = 22;
25
 
    int ESCAPED_QUOTE = 23;
26
 
 
27
 
    int DEFAULT = 0;
28
 
 
29
 
    String[] tokenImage = {
30
 
        "<EOF>",
31
 
        "\" \"",
32
 
        "\"\\t\"",
33
 
        "\"\\n\"",
34
 
        "\"\\r\"",
35
 
        "\"(\"",
36
 
        "\")\"",
37
 
        "\",\"",
38
 
        "\"{\"",
39
 
        "\"}\"",
40
 
        "\";\"",
41
 
        "\"=\"",
42
 
        "\"<\"",
43
 
        "\">\"",
44
 
        "\"<*D\"",
45
 
        "\"\\\"\"",
46
 
        "<LETTER>",
47
 
        "<WHITE>",
48
 
        "<HEXA>",
49
 
        "<DATA>",
50
 
        "<DATE>",
51
 
        "<STRING>",
52
 
        "<QUOTED_STRING>",
53
 
        "\"\\\\\\\"\"",
54
 
    };
55
 
 
56
 
}