Skip to main content
summaryrefslogtreecommitdiffstats
blob: fc8dae02978e7bb69ebfbfee53d648f16a6701d4 (plain) (blame)
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/**********************************************************************
 * This file is part of "Object Teams Development Tooling"-Software
 * 
 * Copyright 2004, 2010 Fraunhofer Gesellschaft, Munich, Germany,
 * for its Fraunhofer Institute and Computer Architecture and Software
 * Technology (FIRST), Berlin, Germany and Technical University Berlin,
 * Germany.
 * 
 * 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
 * $Id: CodeSelectionTests.java 23494 2010-02-05 23:06:44Z stephan $
 * 
 * Please visit http://www.eclipse.org/objectteams for updates and contact.
 * 
 * Contributors:
 * 	  Fraunhofer FIRST - Initial API and implementation
 * 	  Technical University Berlin - Initial API and implementation
 **********************************************************************/
package org.eclipse.objectteams.otdt.tests.selection.codeselect;

import junit.framework.Test;
import junit.framework.TestSuite;

import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.WorkingCopyOwner;
import org.eclipse.objectteams.otdt.tests.AbstractJavaModelTests;

/**
 * @author brcan
 */
public class CodeSelectionTests extends AbstractJavaModelTests
{
    public static Test suite()
    {
        if (false)
        {
            TestSuite suite = new Suite(CodeSelectionTests.class.getName());
            suite.addTest(new CodeSelectionTests("testLocalNameForClassFile"));
            return suite;
        }
        return new Suite(CodeSelectionTests.class);
    }

    public CodeSelectionTests(String name)
    {
        super(name);
    }

    public void setUpSuite() throws Exception
    {
        super.setUpSuite();

        setUpJavaProject("CodeSelection");
    }

    public void tearDownSuite() throws Exception
    {
        deleteProject("CodeSelection");

        super.tearDownSuite();
    }

//    public void testAbstractMethod() throws JavaModelException
//    {
//        ICompilationUnit cu = getCompilationUnit(
//                "Resolve",
//                "src",
//                "",
//                "ResolveAbstractMethod.java");
//        IJavaElement[] elements = codeSelect(cu, "foo", "foo");
//        assertElementsEqual(
//                "Unexpected elements",
//                "foo() [in SuperInterface [in SuperInterface.java [in <default> [in src [in Resolve]]]]]",
//                elements);
//    }

    //testing bound base classes
    public void testBaseclass1() throws JavaModelException
    {
        ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T1.java");
        IJavaElement[] elements = codeSelect(cu, "B1", "B1");
        assertElementsEqual(
                "Unexpected elements",
                "B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]",
                elements);
    }
    // testing base constructor invocation:
    public void testBaseclass1b() throws JavaModelException
    {
        ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T1.java");
        IJavaElement[] elements = codeSelect(cu, "base();", "base");
        assertElementsEqual(
                "Unexpected elements",
                "B1() [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
                elements);
    }
    
    public void testBaseclass2() throws JavaModelException
    {
        ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T2.java");
        IJavaElement[] elements = codeSelect(cu, "basepkg.B1", "basepkg.B1");
        assertElementsEqual(
                "Unexpected elements",
                "B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]",
                elements);
    }
    
   public void testBaseclass3() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T3.java");
       IJavaElement[] elements = codeSelect(cu, "T1", "T1");
       assertElementsEqual(
               "Unexpected elements",
               "T1 [in T1.java [in teampkg1 [in src [in CodeSelection]]]]",
               elements);
   }
   
   public void testBaseclass4() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T4.java");
       IJavaElement[] elements = codeSelect(cu, "teampkg2.T0", "teampkg2.T0");
       assertElementsEqual(
               "Unexpected elements",
               "T0 [in T0.java [in teampkg2 [in src [in CodeSelection]]]]",
               elements);
   }
   
   public void testBaseclass5() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T5.java");
       IJavaElement[] elements = codeSelect(cu, "t4.R1", "t4.R1");
       assertElementsEqual(
               "Unexpected elements",
               "R1 [in T4 [in T4.java [in teampkg1 [in src [in CodeSelection]]]]]",
               elements);
   }

   public void testBaseclass6() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T6.java");
       IJavaElement[] elements = codeSelect(cu, "base.R1", "base.R1");
       assertElementsEqual(
               "Unexpected elements",
               "R1 [in T5 [in T5.java [in teampkg1 [in src [in CodeSelection]]]]]",              
               elements);
   }

   public void testBaseclass6b() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T6.java");
       IJavaElement[] elements = codeSelect(cu, "R1<@base>", "R1");
       assertElementsEqual(
               "Unexpected elements",
               "R1 [in T5 [in T5.java [in teampkg1 [in src [in CodeSelection]]]]]",
               elements);
   }

   public void testBaseclass6c() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg1", "T6.java");
       IJavaElement[] elements = codeSelect(cu, "R1<@TR6.base> {}", "R1");
       assertElementsEqual(
               "Unexpected elements",
               "R1 [in T5 [in T5.java [in teampkg1 [in src [in CodeSelection]]]]]",
               elements);
   }
   
   // select the superclass ref from one rofi to another
   public void testRoleSuperclass() throws JavaModelException 
   {
	   ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2.T2", "R2.java");
       IJavaElement[] elements = codeSelect(cu, "R1", "R1");
       assertElementsEqual(
               "Unexpected elements",
               "R1 [in R1.java [in teampkg2.T2 [in src [in CodeSelection]]]]",
               elements);
   }
   
   //testing type declarations
   public void testTeamDeclaration() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T0.java");
       IJavaElement[] elements = codeSelect(cu, "T0", "T0");
       assertElementsEqual(
               "Unexpected elements",
               "T0 [in T0.java [in teampkg2 [in src [in CodeSelection]]]]",
               elements);
   }

   public void testNestedTeamDeclaration() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T1.java");
       IJavaElement[] elements = codeSelect(cu, "TR1", "TR1");
       assertElementsEqual(
               "Unexpected elements",
               "TR1 [in T1 [in T1.java [in teampkg2 [in src [in CodeSelection]]]]]",
               elements);
   }

   public void testInlinedRoleDeclaration() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T1.java");
       IJavaElement[] elements = codeSelect(cu, "R1 {", "R1");
       assertElementsEqual(
               "Unexpected elements",
               "R1 [in T1 [in T1.java [in teampkg2 [in src [in CodeSelection]]]]]",
               elements);
   }
   
   //TODO(gbr) test role declaration in role file.
   
   //testing method declarations
   public void testMethodDeclaration1() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T1.java");
       IJavaElement[] elements = codeSelect(cu, "t1m1()", "t1m1");
       assertElementsEqual(
               "Unexpected elements",
               "t1m1() [in T1 [in T1.java [in teampkg2 [in src [in CodeSelection]]]]]",
               elements);
   }

   public void testMethodDeclaration2() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T1.java");
       IJavaElement[] elements = codeSelect(cu, "tr1m1()", "tr1m1");
       assertElementsEqual(
               "Unexpected elements",
               "tr1m1() [in TR1 [in T1 [in T1.java [in teampkg2 [in src [in CodeSelection]]]]]]",
               elements);
   }

   public void testMethodDeclaration3() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T1.java");
       IJavaElement[] elements = codeSelect(cu, "r1m1(){/*roleMethod*/}", "r1m1");
       assertElementsEqual(
               "Unexpected elements",
               "r1m1() [in R1 [in T1 [in T1.java [in teampkg2 [in src [in CodeSelection]]]]]]",
               elements);
   }

   //testing field declarations
   public void testFieldDeclaration1() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T1.java");
       IJavaElement[] elements = codeSelect(cu, "t1_f", "t1_f");
       assertElementsEqual(
               "Unexpected elements",
               "t1_f [in T1 [in T1.java [in teampkg2 [in src [in CodeSelection]]]]]",
               elements);
   }

   public void testFieldDeclaration2() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T1.java");
       IJavaElement[] elements = codeSelect(cu, "tr1_f", "tr1_f");
       assertElementsEqual(
               "Unexpected elements",
               "tr1_f [in TR1 [in T1 [in T1.java [in teampkg2 [in src [in CodeSelection]]]]]]",
               elements);
   }

   public void testFieldDeclaration3() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "teampkg2", "T1.java");
       IJavaElement[] elements = codeSelect(cu, "r1_f;//roleField", "r1_f");
       assertElementsEqual(
               "Unexpected elements",
               "r1_f [in R1 [in T1 [in T1.java [in teampkg2 [in src [in CodeSelection]]]]]]",
               elements);
   }
   // actually a dup of https://bugs.eclipse.org/bugs/show_bug.cgi?id=204417
   public void _testRegression1() throws JavaModelException
   {
       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "regression", "Client1.java");
       IJavaElement[] elements = codeSelect(cu, "A(a.cs)", "A");
       assertElementsEqual(
               "Unexpected elements",
               "A [in A.java [in regression [in src [in CodeSelection]]]]",
               elements);
   }
 

	/**
	 * Select a callout mapping (role method spec)
	 */
	public void testCallout1() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "MappingsTeam1.java");
	       IJavaElement[] elements = codeSelect(cu, "rm2", "rm2");
	       assertElementsEqual(
	               "Unexpected elements",
	               "rm2(int) -> bm1(int) [in R [in MappingsTeam1 [in MappingsTeam1.java [in mappings [in src [in CodeSelection]]]]]]",
	               elements);
	}
	
	/**
	 * Select a callout mapping (role method spec)
	 */
	public void testCalloutToFieldShorthand() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "MappingsTeam1.java");
	       IJavaElement[] elements = codeSelect(cu, "jon; // c-t-f shorthand", "jon");
	       assertElementsEqual(
	               "Unexpected elements",
	               "jon [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
	               elements);
	}

	/**
	 * Select a callin replace mapping (role method spec)
	 */
	public void testCallin1() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "MappingsTeam1.java");
	       IJavaElement[] elements = codeSelect(cu, "rm1(int i, Collection c) <-", "rm1");
	       assertElementsEqual(
	               "Unexpected elements",
	               "rm1(int, Collection) [in R [in MappingsTeam1 [in MappingsTeam1.java [in mappings [in src [in CodeSelection]]]]]]",
	               elements);
	}
	
	/**
	 * Select argument name inside a callin parameter mapping.
	 */
	public void testParamMapping1() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "MappingsTeam1.java");
	       IJavaElement[] elements = codeSelect(cu, "i <- x,", "i");
	       assertElementsEqual(
	               "Unexpected elements",
	               "i [in rm1(int, Collection) [in R [in MappingsTeam1 [in MappingsTeam1.java [in mappings [in src [in CodeSelection]]]]]]]",
	               elements);
	}


	/**
	 * Select argument name inside a callout parameter mapping.
	 */
	public void testParamMapping2() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "MappingsTeam1.java");
	       IJavaElement[] elements = codeSelect(cu, "x,//callout mapping", "x");
	       assertElementsEqual(
	               "Unexpected elements",
	               "x [in rm2(int) [in R [in MappingsTeam1 [in MappingsTeam1.java [in mappings [in src [in CodeSelection]]]]]]]",
	               // codeSelect cannot handle children of OTJavaElement :(, uses corresponding SourceMethod as parent
	               // "x [in rm2(int)->bm1(int) [in R [in MappingsTeam1 [in MappingsTeam1.java [in mappings [in src [in CodeSelection]]]]]]]",
	               elements);
	}
	
	/**
	 * Select method call inside a callout parameter mapping.
	 */
	public void testParamMapping3() throws JavaModelException 
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "MappingsTeam1.java");
	       IJavaElement[] elements = codeSelect(cu, "doubleIt(result)", "doubleIt");
	       assertElementsEqual(
	               "Unexpected elements",
	               "doubleIt(int) [in R [in MappingsTeam1 [in MappingsTeam1.java [in mappings [in src [in CodeSelection]]]]]]",
	               // codeSelect cannot handle children of OTJavaElement :(, uses corresponding SourceMethod as parent
	               // "x [in rm2(int)->bm1(int) [in R [in MappingsTeam1 [in MappingsTeam1.java [in mappings [in src [in CodeSelection]]]]]]]",
	               elements);		
	}

	/**
	 * Select base field reference inside a callout-to-field parameter mapping.
	 */
	public void testParamMapping4() throws JavaModelException 
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "MappingsTeam1.java");
	       IJavaElement[] elements = codeSelect(cu, "jon } // c-t-f", "jon");
	       assertElementsEqual(
	               "Unexpected elements",
	               "jon [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
	               elements);		
	}

	/**
	 * Select base field reference inside a callin parameter mapping.
	 */
	public void testParamMapping5() throws JavaModelException 
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "MappingsTeam1.java");
	       IJavaElement[] elements = codeSelect(cu, "jon } // callin", "jon");
	       assertElementsEqual(
	               "Unexpected elements",
	               "jon [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
	               elements);		
	}

	public void testInferredCallout1() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "InferredCallouts.java");
	       IJavaElement[] elements = codeSelect(cu, "bm1(4)", "bm1");
	       assertElementsEqual(
	               "Unexpected elements",
	               "bm1(int) [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
	               elements);		
	}
	
	public void testInferredCallout2() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "InferredCallouts.java");
	       IJavaElement[] elements = codeSelect(cu, "jon = 3L; // qualified version", "jon");
	       assertElementsEqual(
	               "Unexpected elements",
	               "jon [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
	               elements);		
	}
	
	public void testInferredCallout3() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "InferredCallouts.java");
	       IJavaElement[] elements = codeSelect(cu, "jon; // callout-to-field read", "jon");
	       assertElementsEqual(
	               "Unexpected elements",
	               "jon [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
	               elements);		
	}
	
	public void testInferredCallout4() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "InferredCallouts.java");
	       IJavaElement[] elements = codeSelect(cu, "jon = 3L; // unqualified version", "jon");
	       assertElementsEqual(
	               "Unexpected elements",
	               "jon [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
	               elements);		
	}
	
	public void testInferredCallout5() throws JavaModelException
	{
	       ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "mappings", "InferredCallouts.java");
	       IJavaElement[] elements = codeSelect(cu, "jon; // unqualified: callout-to-field read", "jon");
	       assertElementsEqual(
	               "Unexpected elements",
	               "jon [in B1 [in B1.java [in basepkg [in src [in CodeSelection]]]]]",
	               elements);		
	}

	public void testRoleCreation1()  throws JavaModelException 
	{
		ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "statements", "RoleCreation.java");
		IJavaElement[] elements = codeSelect(cu, "R<@t>(\"1\");", "R");
		assertElementsEqual(
					"Unexpected elements",
					"R(String) [in R [in RoleCreation [in RoleCreation.java [in statements [in src [in CodeSelection]]]]]]",
					elements);
	}

	public void testRoleCreation2()  throws JavaModelException 
	{
		ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "statements", "RoleCreation.java");
		IJavaElement[] elements = codeSelect(cu, "R(\"2\");", "R");
		assertElementsEqual(
					"Unexpected elements",
					"R(String) [in R [in RoleCreation [in RoleCreation.java [in statements [in src [in CodeSelection]]]]]]",
					elements);
	}
	
	// awaiting progress in Trac #192
	public void _testRoleCreation3()  throws JavaModelException 
	{
		ProblemRequestor problemRequestor = new ProblemRequestor();
		WorkingCopyOwner owner = newWorkingCopyOwner(problemRequestor);

		ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "statements", "RoleCreation.java");
		cu.getWorkingCopy(owner, null);
		IJavaElement[] elements = codeSelect(cu, "RProtected<@t>(\"3\");", "RProtected");
		assertProblems("Unexpected problems", 
						"----------\n" + 
						"1. ERROR in /CodeSelection/src/statements/RoleCreation.java\n" + 
						"Illegal parameterized use of non-public role RProtected (OTJLD 1.2.3(b)).\n" + 
						"----------\n" + 
						"2. ERROR in /CodeSelection/src/statements/RoleCreation.java\n" + 
						"Illegal parameterized use of non-public role RProtected (OTJLD 1.2.3(b)).\n" + 
						"----------\n", 
						problemRequestor);
		
		assertElementsEqual(
					"Unexpected elements",
					"RProtected(String) [in RProtected [in RoleCreation [in RoleCreation.java [in statements [in src [in CodeSelection]]]]]]",
					elements);
	}

	public void testRoleCreation4()  throws JavaModelException 
	{
		ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "statements", "RoleCreation.java");
		IJavaElement[] elements = codeSelect(cu, "RProtected(\"4\");", "RProtected");
		assertElementsEqual(
					"Unexpected elements",
					"RProtected(String) [in RProtected [in RoleCreation [in RoleCreation.java [in statements [in src [in CodeSelection]]]]]]",
					elements);
	}
	
	public void testTSuperCall1() throws JavaModelException {
		ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "statements", "TSuper.java");
		IJavaElement[] elements = codeSelect(cu, "m(1);", "m");
		assertElementsEqual(
					"Unexpected elements",
					"m(int) [in R1 [in Inner2 [in Mid1 [in TSuper [in TSuper.java [in statements [in src [in CodeSelection]]]]]]]]",
					elements);
	}
	public void testTSuperCall2() throws JavaModelException {
		ICompilationUnit cu = getCompilationUnit("CodeSelection", "src", "statements", "TSuper.java");
		IJavaElement[] elements = codeSelect(cu, "m(2);", "m");
		assertElementsEqual(
					"Unexpected elements",
					"m(int) [in R1 [in Inner1 [in Mid2 [in TSuper [in TSuper.java [in statements [in src [in CodeSelection]]]]]]]]",
					elements);
	}
}

Back to the top