mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
sentence capitalization
This commit is contained in:
@@ -69,7 +69,7 @@ public class BindFieldsFromParametersAction extends BaseIntentionAction implemen
|
||||
LOG.assertTrue(psiParameter != null);
|
||||
}
|
||||
|
||||
setText(CodeInsightBundle.message("intention.bind.fields.from.parameters.text", method.isConstructor() ? "Constructor" : "Method"));
|
||||
setText(CodeInsightBundle.message("intention.bind.fields.from.parameters.text", method.isConstructor() ? "constructor" : "method"));
|
||||
}
|
||||
return isAvailable(psiParameter);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "true"
|
||||
// "Bind method parameters to fields" "true"
|
||||
|
||||
class A{
|
||||
private final String myP;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "true"
|
||||
// "Bind method parameters to fields" "true"
|
||||
|
||||
class A{
|
||||
private int myP1;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Constructor Parameters to Fields" "true"
|
||||
// "Bind constructor parameters to fields" "true"
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Constructor Parameters to Fields" "true"
|
||||
// "Bind constructor parameters to fields" "true"
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Constructor Parameters to Fields" "true"
|
||||
// "Bind constructor parameters to fields" "true"
|
||||
|
||||
class Bar {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "true"
|
||||
// "Bind method parameters to fields" "true"
|
||||
|
||||
class A{
|
||||
private Object myP1;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "true"
|
||||
// "Bind method parameters to fields" "true"
|
||||
|
||||
class A{
|
||||
private String myP1;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "true"
|
||||
// "Bind method parameters to fields" "true"
|
||||
|
||||
class A{
|
||||
private final String myP;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "true"
|
||||
// "Bind method parameters to fields" "true"
|
||||
|
||||
class A{
|
||||
void <caret>method(int p1, int p2){
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "false"
|
||||
// "Bind method parameters to fields" "false"
|
||||
|
||||
class A{
|
||||
private final String myP1;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "false"
|
||||
// "Bind method parameters to fields" "false"
|
||||
|
||||
class A{
|
||||
private final String myP1;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "false"
|
||||
// "Bind method parameters to fields" "false"
|
||||
|
||||
class A{
|
||||
void <caret>f(){
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Constructor Parameters to Fields" "true"
|
||||
// "Bind constructor parameters to fields" "true"
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Constructor Parameters to Fields" "true"
|
||||
// "Bind constructor parameters to fields" "true"
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Constructor Parameters to Fields" "true"
|
||||
// "Bind constructor parameters to fields" "true"
|
||||
|
||||
class Bar {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "true"
|
||||
// "Bind method parameters to fields" "true"
|
||||
|
||||
class A{
|
||||
<T> void f(T p<caret>1, T p2){
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Bind Method Parameters to Fields" "true"
|
||||
// "Bind method parameters to fields" "true"
|
||||
|
||||
class A{
|
||||
<T extends String> void f(T p<caret>1, T p2){
|
||||
|
||||
@@ -189,17 +189,17 @@ dialog.create.class.package.chooser.title=Choose Destination Package
|
||||
create.directory.command=Create directory
|
||||
dialog.create.class.label=Create {0}:
|
||||
dialog.create.class.name=Create {0} {1}
|
||||
intention.implement.abstract.class.family=Implement Abstract Class or Interface
|
||||
intention.implement.abstract.class.default.text=Implement Abstract Class
|
||||
intention.implement.abstract.class.interface.text=Implement Interface
|
||||
intention.implement.abstract.class.subclass.text=Create Subclass
|
||||
intention.implement.abstract.class.family=Implement abstract class or Interface
|
||||
intention.implement.abstract.class.default.text=Implement abstract class
|
||||
intention.implement.abstract.class.interface.text=Implement interface
|
||||
intention.implement.abstract.class.subclass.text=Create subclass
|
||||
intention.error.cannot.create.class.message=Cannot Create Class ''{0}''
|
||||
intention.error.cannot.create.class.title=Failed to Create Class
|
||||
intention.assign.field.from.parameter.text=Assign Parameter to Field ''{0}''
|
||||
intention.assign.field.from.parameter.family=Assign Parameter to Field
|
||||
intention.create.field.from.parameter.text=Create field for parameter ''{0}''
|
||||
intention.create.field.from.parameter.family=Create field for parameter
|
||||
intention.bind.fields.from.parameters.text=Bind {0} Parameters to Fields
|
||||
intention.bind.fields.from.parameters.text=Bind {0} parameters to fields
|
||||
intention.bind.fields.from.parameters.family=Bind Parameters to Fields
|
||||
intention.implement.abstract.method.searching.for.descendants.progress=Searching For Descendants...
|
||||
intention.implement.abstract.method.error.no.classes.message=There are no classes found where this method can be implemented
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<tr>
|
||||
<td colspan="3"><font face="verdana" size="-1">
|
||||
This is a built-in template used for filling the body of an implemented method when it is generated,
|
||||
e.g. when using the <i>Implement Abstract Class</i> or <i>Implement Abstract Method</i> intention actions or
|
||||
e.g. when using the <i>Implement abstract class</i> or <i>Implement Abstract Method</i> intention actions or
|
||||
calling the <i>Code | Implement Method...</i> function.<br>
|
||||
The template is editable. Along with Java expressions and comments, you can also use predefined variables that
|
||||
will be then expanded into the corresponding values.</font>
|
||||
|
||||
Reference in New Issue
Block a user