Detectable indent options provider implementation

This commit is contained in:
Rustam Vishnyakov
2014-09-25 12:03:20 +04:00
parent 44fbcc7197
commit cae66e0fb3
16 changed files with 242 additions and 12 deletions
@@ -0,0 +1,9 @@
public class Main {
public void main() {
try {
System.out.println();<caret>
} catch (Exception exception) {
exception.printStackTrace();
}
}
}
@@ -0,0 +1,10 @@
public class Main {
public void main() {
try {
System.out.println();
<caret>
} catch (Exception exception) {
exception.printStackTrace();
}
}
}
@@ -0,0 +1,9 @@
public class Main {
public void main() {
try {
System.out.println();<caret>
} catch (java.lang.Exception exception) {
exception.printStackTrace();
}
}
}
@@ -0,0 +1,10 @@
public class Main {
public void main() {
try {
System.out.println();
<caret>
} catch (java.lang.Exception exception) {
exception.printStackTrace();
}
}
}