File: MergerTarget.java

package info (click to toggle)
eclipse-emf 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 50,912 kB
  • ctags: 60,697
  • sloc: java: 407,889; xml: 7,165; sh: 200; makefile: 13
file content (125 lines) | stat: -rwxr-xr-x 3,751 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/**
 * <copyright>
 * </copyright>
 */
package org.eclipse.example.library;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import org.eclipse.emf.common.util.Enumerator;

/**
 * <!-- begin-user-doc -->
 * A representation of the literals of the enumeration '<em><b>Book Category</b></em>',
 * and utility methods for working with them.
 * @implements EnumeratorTarget 
 * <!-- end-user-doc -->
 * @see org.eclipse.example.library.LibraryPackage#getBookCategory()
 * @model
 * @generated
 */
public enum BookCategory implements EnumeratorTarget, EnumeratorTarget1
{
  // line comment hanging before Mystery
  
  // line comment right before Mystery 
  /**
   * The '<em><b>Mystery</b></em>' literal object.
   * target comment
   * <!-- begin-user-doc -->
   * target comment Mystery
   * <!-- end-user-doc -->
   * @see #MYSTERY
   * @generated NOT
   * @ordered
   */
  MYSTERY_LITERAL(0, "Target Mystery", "Mystery") //$NON-NLS-1$ //$NON-NLS-2$  // Mystery
  // line comment after Mystery before comma
  
  // hanging comment after Mystery before comma
  , // line comment after Mystery after comma

  // line comment between Mystery and Mystery2
  
  // line comment right before Mystery2
  /**
   * The '<em><b>Mystery2</b></em>' literal object.
   * target comment
   * <!-- begin-user-doc -->
   * target comment Mystery2
   * <!-- end-user-doc -->
   * @see #MYSTERY
   * @generated NOT
   * @ordered
   */
  MYSTERY2_LITERAL(0, "Target Mystery2", "Mystery") //$NON-NLS-1$ //$NON-NLS-2$ // Mystery2 
  // line comment after Mystery2 before comma
  
  // hanging comment after Mystery2 before comma  
  , // line comment after Mystery2 after comma

  // line comment between Mystery and MysteryToBeRemoved
  
  // line comment right before MysteryToBeRemoved
  /**
   * The '<em><b>MysteryToBeRemoved</b></em>' literal object.
   * target comment
   * <!-- begin-user-doc -->
   * target comment MysteryToBeRemoved
   * <!-- end-user-doc -->
   * @see #MYSTERY
   * @generated
   * @ordered
   */
  MYSTERY_TO_BE_REMOVED_LITERAL(0, "Target MysteryToBeRemoved", "Mystery") //$NON-NLS-1$ //$NON-NLS-2$ // MysteryToBeRemoved 
  // line comment after MysteryToBeRemoved before comma
  
  // hanging comment after MysteryToBeRemoved before comma  
  , // line comment after MysteryToBeRemoved after comma

  // line comment between MysteryToBeRemoved and ScienceFiction
  
  // line comment right before ScienceFiction
  /**
   * The '<em><b>Science Fiction</b></em>' literal object.
   * target comment
   * <!-- begin-user-doc -->
   * target comment ScienceFiction
   * <!-- end-user-doc -->
   * @see #SCIENCE_FICTION
   * @generated NOT
   * @ordered
   */
  SCIENCE_FICTION_LITERAL(1, "Target ScienceFiction", "ScienceFiction") //$NON-NLS-1$ //$NON-NLS-2$ //ScienceFiction 
  // line comment after ScienceFiction before comma
  
  // hanging comment after ScienceFiction before comma  
  , // line comment after ScienceFiction after comma

  // line comment between ScienceFiction and Biography
  
  // line comment right before Biography
  /**
   * The '<em><b>Biography</b></em>' literal object.
   * target comment
   * <!-- begin-user-doc -->
   * target comment Biography
   * <!-- end-user-doc -->
   * @see #BIOGRAPHY
   * @generated
   * @ordered
   */
  BIOGRAPHY_LITERAL(2, "Target Biography", "Biography") //$NON-NLS-1$ //$NON-NLS-2$ // Biography
  // line comment after Biography before semicolon
  
  // hanging comment after Biography before semicolon  
  ; // line comment at the end of enum consts
  
  /*
   * Bugzilla 165525: Adding new field after last field in enum should keep
   * the line comment of existing field with the existing field 
   */  
  String s1 = "target"; //$NON-NLS-1$
}