mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 13:31:28 +07:00
sentence capitalization
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public class Test {
|
||||
public static void main() {
|
||||
new MyCollection(10);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public class Test {
|
||||
public void main2() {
|
||||
new MyCollection(this);
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Outer {
|
||||
public Outer(String s) {
|
||||
}
|
||||
|
||||
void method(Outer other) {
|
||||
other.new CreateConstructorFromUsage("parameter"); // invoke "Create Constructor" quick fix here
|
||||
other.new CreateConstructorFromUsage("parameter"); // invoke "Create constructor" quick fix here
|
||||
}
|
||||
|
||||
class CreateConstructorFromUsage {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test {
|
||||
|
||||
public void t() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test extends A{
|
||||
|
||||
public Test(String a) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test {
|
||||
void foo() throws Ex1 {}
|
||||
void bar() throws Ex2 {}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test extends A{
|
||||
|
||||
public Test(String a) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public enum ReportType {
|
||||
AGING("Aging");
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public enum ReportType {
|
||||
AGING("Aging"),;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test extends A{
|
||||
|
||||
public Test(String a) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public class Test {
|
||||
public static void main() {
|
||||
new My<caret>Collection(10);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public class Test {
|
||||
public void main2() {
|
||||
new <caret>MyCollection(this);
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Outer {
|
||||
public Outer(String s) {
|
||||
}
|
||||
|
||||
void method(Outer other) {
|
||||
other.new <caret>CreateConstructorFromUsage("parameter"); // invoke "Create Constructor" quick fix here
|
||||
other.new <caret>CreateConstructorFromUsage("parameter"); // invoke "Create constructor" quick fix here
|
||||
}
|
||||
|
||||
class CreateConstructorFromUsage {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test {
|
||||
|
||||
public void t() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test extends A{
|
||||
|
||||
public void t() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test {
|
||||
void foo() throws Ex1 {}
|
||||
void bar() throws Ex2 {}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test extends A{
|
||||
|
||||
public void t() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public enum ReportType {
|
||||
AGING("Aging")<caret>
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public enum ReportType {
|
||||
AGING("Aging")<caret>,
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class Test extends A{
|
||||
|
||||
public void t() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor In 'Base'" "true"
|
||||
// "Create constructor in 'Base'" "true"
|
||||
class Base {
|
||||
public Base(int i, Object o) {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor In 'Base'" "true"
|
||||
// "Create constructor in 'Base'" "true"
|
||||
class Base {
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class FooBar {
|
||||
FooBar(int i) {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
class FooBar {
|
||||
FooBar(int i) {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Parameter 'popop'" "true"
|
||||
// "Create parameter 'popop'" "true"
|
||||
class Calculator {
|
||||
public void printError(int popop) {
|
||||
int i = popop;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Parameter 'popop'" "true"
|
||||
// "Create parameter 'popop'" "true"
|
||||
class Calculator {
|
||||
public void printError(String detail, int line, String file, String popop) {
|
||||
int i = popop;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Parameter 'popop'" "true"
|
||||
// "Create parameter 'popop'" "true"
|
||||
class Calculator {
|
||||
public void printError(String detail, int line, String file, int popop) {
|
||||
int i = <caret>popop;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Parameter 'popop'" "true"
|
||||
// "Create parameter 'popop'" "true"
|
||||
class Calculator {
|
||||
public void printError() {
|
||||
int i = <caret>popop;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Parameter 'popop'" "true"
|
||||
// "Create parameter 'popop'" "true"
|
||||
class Calculator {
|
||||
public void printError(String detail, int line, String file) {
|
||||
int i = popop;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Parameter 'popop'" "true"
|
||||
// "Create parameter 'popop'" "true"
|
||||
class Calculator {
|
||||
public void printError(String detail, int line, String file) {
|
||||
int i = <caret>popop;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public class Seq<T> {
|
||||
public Seq() {}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create Constructor" "true"
|
||||
// "Create constructor" "true"
|
||||
public class Seq<T> {
|
||||
public Seq() {}
|
||||
|
||||
|
||||
@@ -309,7 +309,7 @@ ellipsis.type.is.not.allowed.here=Ellipsis type is not allowed here
|
||||
method.0.is.too.complex.too.analyze=Method ''{0}'' is too complex to analyze.\nTypes of local variables are not inferred.
|
||||
closure.is.too.complex.to.analyze=Closure is complex to analyze.\nTypes of local variables are not inferred.
|
||||
0.is.deprecated=''{0}'' is deprecated
|
||||
create.parameter.from.usage=Create Parameter ''{0}''
|
||||
create.parameter.from.usage=Create parameter ''{0}''
|
||||
wrong.number.of.type.arguments=Wrong number of type arguments\: {0}; required\: {1}
|
||||
type.argument.0.is.not.in.its.bound.should.extend.1=Type parameter ''{0}'' is not in its bound; should extend ''{1}''
|
||||
catch.statement.parameter.type.should.be.a.subclass.of.throwable=Catch statement parameter type should be a subclass of Throwable
|
||||
|
||||
@@ -8515,7 +8515,7 @@ javascript.validation.message.vector.without.parameters=Vector without type
|
||||
javascript.validation.message.vector.without.parameters2=Vector without type can not be instantiated
|
||||
javascript.parser.message.expected.declaration=Declaration expected
|
||||
javascript.assign.parameter.to.field.intention.name=Assign parameter ''{0}'' to field
|
||||
javascript.fix.create.parameter=Create Parameter
|
||||
javascript.fix.create.parameter=Create parameter
|
||||
javascript.introduce.parameter.introduced.variable.value=&Value:
|
||||
action.JSExtractInterface.text=Extract _Interface...
|
||||
action.JSExtractInterface.description=Extract interface from the selected class
|
||||
@@ -24004,7 +24004,7 @@ javascript.validation.message.vector.without.parameters=Vector without type
|
||||
javascript.validation.message.vector.without.parameters2=Vector without type can not be instantiated
|
||||
javascript.parser.message.expected.declaration=Declaration expected
|
||||
javascript.assign.parameter.to.field.intention.name=Assign parameter ''{0}'' to field
|
||||
javascript.fix.create.parameter=Create Parameter
|
||||
javascript.fix.create.parameter=Create parameter
|
||||
javascript.introduce.parameter.introduced.variable.value=&Value:
|
||||
action.JSExtractInterface.text=Extract _Interface...
|
||||
action.JSExtractInterface.description=Extract interface from the selected class
|
||||
|
||||
@@ -33,7 +33,7 @@ public class CreateParameterFix extends AddParamBase {
|
||||
|
||||
@NotNull
|
||||
public String getText() {
|
||||
return "Create Parameter '" + myReference.getReferencedName() + "'";
|
||||
return "Create parameter '" + myReference.getReferencedName() + "'";
|
||||
}
|
||||
|
||||
protected String getParamName() {
|
||||
|
||||
@@ -60,10 +60,10 @@ create.constant.from.usage.family=Create Constant From Usage
|
||||
create.constant.from.usage.text=Create constant field ''{0}''
|
||||
create.enum.constant.from.usage.text=Create enum constant ''{0}''
|
||||
create.constructor.from.new.family=Create Constructor from New
|
||||
create.constructor.from.new.text=Create Constructor
|
||||
create.constructor.from.new.text=Create constructor
|
||||
create.constructor.from.super.call.family=Create Constructor From super() Call
|
||||
create.constructor.from.this.call.family=Create Constructor From this() Call
|
||||
create.constructor.text=Create Constructor In ''{0}''
|
||||
create.constructor.text=Create constructor in ''{0}''
|
||||
create.constructor.matching.super=Create constructor matching super
|
||||
super.class.constructors.chooser.title=Choose Super Class Constructors
|
||||
create.field.from.usage.family=Create field from Usage
|
||||
@@ -89,9 +89,9 @@ create.local.from.instanceof.usage.family=Create Local Var from instanceof Usage
|
||||
create.local.from.instanceof.usage.text=Insert ''({0}){1}'' declaration
|
||||
create.method.from.usage.family=Create method from usage
|
||||
create.method.from.usage.text=Create method ''{0}''
|
||||
create.abstract.method.from.usage.text=Create Abstract Method ''{0}''
|
||||
create.parameter.from.usage.family=Create Parameter from Usage
|
||||
create.parameter.from.usage.text=Create Parameter ''{0}''
|
||||
create.abstract.method.from.usage.text=Create abstract method ''{0}''
|
||||
create.parameter.from.usage.family=Create parameter from Usage
|
||||
create.parameter.from.usage.text=Create parameter ''{0}''
|
||||
create.property.from.usage.family=Create property From Usage
|
||||
create.getter=Create Getter
|
||||
create.setter=Create Setter
|
||||
|
||||
Reference in New Issue
Block a user