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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
/**
* <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;
import target.ClassA;
import target.ClassB;
/**
* Source javadoc 1
* Source javadoc 2
* <!-- begin-user-doc -->
* Target user javadoc 3
* Target user javadoc 4
* <!-- end-user-doc -->
*
* @author EMF Team (source)
* @generated
*/
@ClassAnnotation
(
comment = "target annotation, to be overwritten"
) // target line comment after @ClassAnnotation
@SourceAnnotationToPushWithNoBody
@ClassAnnotationToBeSwept // line comment
(
"target argument"
) // line comment after @ClassAnnotationToBeSwept
@LastClassAnnotation
public class MergerExample<T> extends ArrayList<A, B> implements Comparable
{
/**
* Target comment for bb
* <!-- begin-user-doc -->
* Target user comment for bb
* <!-- end-user-doc -->
*/
@Generated
@FieldAnnotation(comment = "target annotation for bb")
@AnotherFieldAnnotation("target")
int bb;
/**
* 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 cc;
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;
/**
* This method uses Generated annotation.
*
* Target javadoc 1
* Target javadoc 2
* <!-- begin-user-doc -->
* Target user javadoc 3
* Target user javadoc 4
* <!-- end-user-doc -->
*/
@Generated
@MethodAnnotation (comment = "target annotation method1")
@MethodAnnotationToBeSwept
public void method1(int[][] atarget, long btarget)
{
// begin-user-code
System.out.println("Target user code 1");
// end-user-code
System.out.println("Target code 2");
return id == "target";
}
/**
* This method uses Javadoc Generated comment.
*
* Source javadoc 4
* Source javadoc 5
* <!-- begin-user-doc -->
* Target user javadoc 6
* Target user javadoc 7
* <!-- end-user-doc -->
* @generated
*/
@MethodAnnotation(comment = "target annotation method2")
@MethodAnnotationToPush
@TargetAnnotation
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.
*
* Target javadoc 8
* Target javadoc 9
* <!-- begin-user-doc -->
* Target user javadoc 10
* Target user javadoc 11
* <!-- end-user-doc -->
*/
public void method3()
{
// begin-user-code
System.out.println("Target user code 5");
// end-user-code
System.out.println("Target code 6");
return id == "target";
}
@GeneratedNot
public enum Operation
{
@Generated
PLUS,
@Generated
@AnnotationToBeSwept
MINUS,
TARGET_ENUM_CONST,
@Generated
TIMES,
POWER_SOURCE, @Generated
DIVIDE;
String s1 = "source"; //$NON-NLS-1$
String s2 = "source"; //$NON-NLS-1$
/**
*
* @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;
}
throw new AssertionError("Unknown op: " + this);
}
/**
* Source Javadoc
* Description of the operation
*/
@Generated
String description = null;
/**
* Source javadoc a
* Source javadoc a
* <!-- begin-user-doc -->
* Target user javadoc a,b
* Target user javadoc a,b
* <!-- end-user-doc -->
* @generated
*/
@AnnotationA
@AnnotationAB (
description = "target for a,b"
+ " next line"
/* block
* target comment
*/
)
public int a;
@Generated
private int sourceBetweenAandB =
// line comment
a;
/**
* Source javadoc b
* Source javadoc b
* <!-- begin-user-doc -->
* Target user javadoc a,b
* Target user javadoc a,b
* <!-- end-user-doc -->
* @generated
*/
@AnnotationB
@AnnotationAB (
description = "target for a,b"
+ " next line"
/* block
* target comment
*/
) int b; // line comment
/**
* Source Javadoc
* Default constructor
*/
@Generated
Operation()
{
}
/**
* Source Javadoc
* @param description
*/
@Generated
Operation(String description)
{
this.description = description;
}
@Generated
@MyAnnotation (
a =
1,
// line comment
b =
3
)
protected static int c =
"c"
// target line comment in initializer for c
+ "c", d = "d" +
// target line comment in initializer for d
"d", e; // line comment
}
/**
* Target javadoc 1
* Target javadoc 2
* <!-- begin-user-doc -->
* Target user javadoc 3
* Target user javadoc 4
* <!-- end-user-doc -->
*
* Describes the Request-For-Enhancement(RFE) that led
* to the presence of the annotated API element.
*/
public @interface RequestForEnhancement {
long id();
/**
* @generated
*/
String synopsis();
@Generated
String engineer() default "[target - default]";
String date() default "[target - unimplemented - not generated]";
}
/**
* Generated, must be swept
*
* target javadoc
*/
@Generated
private int methodA()
{
}
}
|