01: /*
02: * testSyntaxSelection.java
03: *
04: * Created on Aug 9, 2007, 12:17:12 PM
05: *
06: * To change this template, choose Tools | Templates
07: * and open the template in the editor.
08: */
09:
10: package java_editor_actions.JavaEditActionsTest;
11:
12: import java.util.LinkedList;
13: import java.util.List;
14:
15: /**
16: *
17: * @author jp159440
18: */
19: public class testSyntaxSelection {
20: public class InnerClass {
21: public void method() {
22: int x = 0;
23: while (x < 10) {
24: if (x == 3) {
25: x++;
26: } else {
27: List<String> s = new LinkedList<String>();
28: }
29: }
30:
31: }
32: }
33: }
|