sentence capitalization

This commit is contained in:
Dmitry Avdeev
2014-12-06 11:19:41 +03:00
parent d304ec4ede
commit 1d566347e1
49 changed files with 66 additions and 68 deletions
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
class a {
void f() {
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
class a {
String f() {
<caret><selection>return null;</selection>
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
class a {
a() {
<caret><selection></selection>
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
class a {
String f() {
<caret><selection>return null;</selection>
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
interface a {
default String f() {
<selection>return null;</selection>
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
class a {
<caret>void f();
}
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
class a {
<caret>String f();
}
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
class a {
<caret>a();
}
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
class a {
<caret>abstract String f();
}
@@ -1,4 +1,4 @@
// "Add Method Body" "false"
// "Add method body" "false"
interface a {
<caret>String f();
}
@@ -1,4 +1,4 @@
// "Add Method Body" "true"
// "Add method body" "true"
interface a {
default <caret>String f();
}
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
int f() {
return <caret><selection>0</selection>;
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
String f() {
return <caret><selection>null</selection>;
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
int f() {
int i = 0;
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
int f(int p) {
return <caret><selection>p</selection>;
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
int f() {
short i = 0;
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
int f() {
<caret>}
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
String f() {
<caret>}
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
int f() {
int i = 0;
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
int f(int p) {
<caret>}
@@ -1,4 +1,4 @@
// "Add Return Statement" "true"
// "Add 'return' statement" "true"
class a {
int f() {
short i = 0;
@@ -1,4 +1,4 @@
// "Add Method Body" "false"
// "Add method body" "false"
class a {
String f() {
return null;
@@ -1,4 +1,4 @@
// "Add Runtime Exception(s) to Method Signature" "true"
// "Add runtime exception(s) to method signature" "true"
class a {
int f() throws RuntimeException {
throw new RuntimeException()<caret>;
@@ -1,4 +1,4 @@
// "Add Runtime Exception(s) to Method Signature" "true"
// "Add runtime exception(s) to method signature" "true"
class a {
int f() {
throw new RuntimeException()<caret>;
@@ -1,4 +1,4 @@
// "Add Runtime Exception(s) to Method Signature" "false"
// "Add runtime exception(s) to method signature" "false"
class a {
int f() throws RuntimeException{
throw new RuntimeException()<caret>;
@@ -1,4 +1,4 @@
// "Add Runtime Exception(s) to Method Signature" "false"
// "Add runtime exception(s) to method signature" "false"
class a {
int f() {
Runnable r = () -> {
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
interface Card {
void play();
}
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
class c {
void foo() {
new I<String>()<caret>
@@ -1,4 +1,4 @@
// "Implement Methods" "false"
// "Implement methods" "false"
class c {
void foo() {
new I<String>(new String(<caret>
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
interface Card {
void play();
}
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
class c {
void foo() {
new Runnable()<caret>
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
enum E {
A {
@Override
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
class Test {
class A<T> {
public class Inner { }
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
import java.lang.annotation.*;
import java.util.*;
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
enum E {
<caret>A;
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
class Test {
class A<T> {
public class Inner { }
@@ -1,4 +1,4 @@
// "Implement Methods" "true"
// "Implement methods" "true"
import java.lang.annotation.*;
import java.util.*;