File: MergerSource.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 (245 lines) | stat: -rwxr-xr-x 5,527 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/**
 * <copyright>
 *
 * Copyright (c) 2004 IBM Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors: 
 *   IBM - Initial API and implementation
 *
 * </copyright>
 */
package org.eclipse.emf.test.tools.merger;

import source.ClassA;
import source.ClassB;

/**
 * Source javadoc 1
 * Source javadoc 2
 * <!-- begin-user-doc -->
 * Source user javadoc 3
 * Source user javadoc 4
 * <!-- end-user-doc -->
 * 
 * @author EMF Team (source)
 * @generated
 */
@ClassAnnotation(comment = "source annotation") // source line comment
@SourceAnnotationToPushWithNoBody
@LastClassAnnotation
public class MergerExample<T> extends ArrayList<A, B> implements Comparable
{
  String s1 = "source"; //$NON-NLS-1$
  String s2 = "source"; //$NON-NLS-1$
  
  /**
   * Source comment for aa, bb, cc
   * <!-- begin-user-doc -->
   * Source user comment for aa, bb, cc
   * <!-- end-user-doc -->
   */
  @Generated  
  @FieldAnnotation(comment = "source annotation for aa,bb,cc")
  @SourceFieldAnnotation(comment = "source sourceannotation for aa,bb,cc")
  int aa, bb, cc;
  
  /**
   * This method uses Generated annotation.
   * 
   * Source javadoc 1
   * Source javadoc 2
   * <!-- begin-user-doc -->
   * Source user javadoc 3
   * Source user javadoc 4
   * <!-- end-user-doc -->
   */
  @Generated
  @MethodAnnotationToPush
  @MethodAnnotation(comment = "source annotation method1")
  public <S> void method1( final int[] a[] , @ParameterAnnoation  final  long b)
  {
    // begin-user-code
    System.out.println("Source user code 1");
    // end-user-code    
    System.out.println("Source code 2");
    return id == "source";
  }
  
  /**
   * This method uses Javadoc Generated comment.
   * 
   * Source javadoc 4
   * Source javadoc 5
   * <!-- begin-user-doc -->
   * Source user javadoc 6
   * Source user javadoc 7
   * <!-- end-user-doc -->
   * @generated
   */
  @MethodAnnotation(comment = "source annotation method2"
      // source line comment inside annotation
  )  
  @MethodAnnotationToPush
  public void method2(List list, HashMap [ ] hashMap)
  {
    // begin-user-code
    System.out.println("Source user code 3");
    // end-user-code    
    System.out.println("Source code 4");
    return id == "source";
  }
  
  /**
   * This method is not generated in target.
   * 
   * Source javadoc 8
   * Source javadoc 9
   * <!-- begin-user-doc -->
   * Source user javadoc 10
   * Source user javadoc 11
   * <!-- end-user-doc -->
   */
  @Generated
  @SourceAnnotationNotToPush
  public void method3()
  {
    // begin-user-code
    System.out.println("Source user code 5");
    // end-user-code    
    System.out.println("Source code 6");
    return id == "source";
  }  
  
  @Generated
  public enum Operation {
    PLUS ("source - plus"), 
    MINUS, 
    TIMES ("source - multiply"), 
    POWER_SOURCE, 
    DIVIDE ("source - divide") 
    {
      /* source divide const body */
    };

    String s1 = "source"; //$NON-NLS-1$
    String s2 = "source"; //$NON-NLS-1$    
    
    /**
     * Source Javadoc
     * Perform operation
     * @param x
     * @param y
     * @return
     */
    @Generated
    double eval(double x, double y)
    {
      switch (this)
      {
        case PLUS:
          return x + y;
        case MINUS:
          return x - y;
        case TIMES:
          return x * y;
        case DIVIDE:
          return x / y;
        case POWER_SOURCE:
          return Math.pow(x, y);
      }
      throw new AssertionError("Unknown source op: " + this);
    }
    
    /**
     * Source Javadoc
     * Description of the operation
     */
    @Generated
    String description = null;
    
    /**
     * Source javadoc a
     * Source javadoc a
     * <!-- begin-user-doc -->
     * Source user javadoc a
     * Source user javadoc a
     * <!-- end-user-doc -->  
     * @generated
     */
    public @AnnotationA
    @AnnotationAB(
      description = "source"
      // source line comment
    )
    int a;

    @Generated
    private int sourceBetweenAandB = 
      // line comment
      a;
    
    /**
     * Source javadoc b
     * Source javadoc b
     * <!-- begin-user-doc -->
     * Source user javadoc b
     * Source user javadoc b
     * <!-- end-user-doc -->  
     * @generated
     */
    @AnnotationB
    int b;
    
    @Generated
    @SourceAnnotationForCAndD(
      // source comment
        // source comment
      "string value"
    )
    private int c = "source " +
        "string for c" /* comment for initializer of c */, d;
    
    
    /**
     * Source Javadoc
     * Default constructor
     */
    @Generated
    Operation()
    {
    }
    
    /**
     * Source Javadoc
     * @param description
     */
    @Generated
    Operation(String description)
    {
      this.description = description;
    }
  }  
  
  /**
   * Source javadoc 1
   * Source javadoc 2
   * <!-- begin-user-doc -->
   * Source user javadoc 3
   * Source user javadoc 4
   * <!-- end-user-doc -->
   * 
   * Describes the Request-For-Enhancement(RFE) that led
   * to the presence of the annotated API element.
   */
  @Generated
  private @interface RequestForEnhancement {
      int    id();
      String synopsis();
      String engineer() default "[unassigned - source]"; 
      String date()    default "[unimplemented - source]"; 
  }
}