mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 08:45:34 +07:00
generate visibility setting for create from usage, generate getter/setter/constructor (IDEA-120662, IDEA-64613, IDEA-122025)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
public abstract class Test {
|
||||
protected Test() {<caret>
|
||||
public Test() {<caret>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class Parent {
|
||||
Object menu;
|
||||
|
||||
Parent(Object menu) {
|
||||
public Parent(Object menu) {
|
||||
this.menu = menu;
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class Test {
|
||||
private int _foo;
|
||||
|
||||
Test(int foo) {
|
||||
public Test(int foo) {
|
||||
_foo = foo;
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -4,7 +4,7 @@ class Test {
|
||||
private int c;
|
||||
private final int d;
|
||||
|
||||
Test(int b, int d) {
|
||||
public Test(int b, int d) {
|
||||
this.b = b;
|
||||
this.d = d;
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
class A
|
||||
{
|
||||
A() {
|
||||
public A() {<caret>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
class Test {
|
||||
Test() {<caret>
|
||||
public Test() {<caret>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class Test {
|
||||
private class Foo {
|
||||
private Foo() {<caret>
|
||||
public Foo() {<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ class Parent<T> {
|
||||
}
|
||||
|
||||
class Child<Integer> extends Parent<Integer> {
|
||||
Child(Integer field) {
|
||||
public Child(Integer field) {
|
||||
super(field);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user