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
|
/**
* <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 target.ClassA;
import target.ClassB;
/**
* Target javadoc 1
* Target javadoc 2
* <!-- begin-user-doc -->
* Target user javadoc 3
* Target user javadoc 4
* <!-- end-user-doc -->
*
* @author EMF Team (target)
* @generated
*/
@ClassAnnotation
(
comment = "target annotation, to be overwritten"
) // target line comment after @ClassAnnotation
@ClassAnnotationToBeSwept // line comment
(
"target argument"
) // line comment after @ClassAnnotationToBeSwept
@LastClassAnnotation
public class MergerExample
{
/**
* 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;
String s1 = "source"; //$NON-NLS-1$
/**
* 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.
*
* Target javadoc 4
* Target javadoc 5
* <!-- begin-user-doc -->
* Target user javadoc 6
* Target user javadoc 7
* <!-- end-user-doc -->
* @generated
*/
@MethodAnnotation(comment = "target annotation method2")
@TargetAnnotation
public <T> void method2(List<T> l, final HashMap<T, S> h[])
{
// begin-user-code
System.out.println("Target user code 2");
// end-user-code
System.out.println("Target code 3");
return id == "target";
}
/**
* 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,
@Generated
DIVIDE;
String s1 = "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);
}
/**
* Target javadoc a,b
* Target javadoc a,b
* <!-- begin-user-doc -->
* Target user javadoc a,b
* Target user javadoc a,b
* <!-- end-user-doc -->
* @generated
*/
@AnnotationAB (
description = "target for a,b"
+ " next line"
/* block
* target comment
*/
)
private int a, b; // line comment
@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() default "[target - unassigned]";
@Generated
String engineer() default "[target - default]";
String date() default "[target - unimplemented - not generated]";
}
/**
* Generated, must be swept
*
* target javadoc
*/
@Generated
private int methodA()
{
}
}
|