mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
implementation of methods chain completion indexing on jps
This commit is contained in:
-25
@@ -1,25 +0,0 @@
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
|
||||
|
||||
class PsiMethod implements PsiElement {
|
||||
}
|
||||
|
||||
interface PsiElement {
|
||||
}
|
||||
|
||||
class PsiClass {
|
||||
public PsiMethod findMethodByName(String methodName) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public class TestCompletion {
|
||||
|
||||
PsiClass c;
|
||||
|
||||
public void method() {
|
||||
PsiElement element = <caret>
|
||||
}
|
||||
}
|
||||
-24
@@ -1,24 +0,0 @@
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
public class TestIndex {
|
||||
|
||||
public void statMethod(PsiClass c) {
|
||||
c.findMethodByName("asd");
|
||||
c.findMethodByName("asd");
|
||||
c.findMethodByName("asd");
|
||||
c.findMethodByName("asd");
|
||||
}
|
||||
}
|
||||
|
||||
class PsiMethod implements PsiElement {
|
||||
}
|
||||
|
||||
interface PsiElement {
|
||||
}
|
||||
|
||||
class PsiClass {
|
||||
public PsiMethod findMethodByName(String methodName) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Copyright 2000-2013 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
|
||||
|
||||
class PsiMethod implements PsiElement {
|
||||
}
|
||||
|
||||
interface PsiElement {
|
||||
}
|
||||
|
||||
class PsiClass {
|
||||
public PsiMethod findMethodByName(String methodName) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public class TestCompletion {
|
||||
|
||||
PsiClass c;
|
||||
|
||||
public void method() {
|
||||
PsiElement element = <caret>
|
||||
}
|
||||
}
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Copyright 2000-2013 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
public class TestIndex {
|
||||
|
||||
public void statMethod(PsiClass c) {
|
||||
c.findMethodByName("asd");
|
||||
c.findMethodByName("asd");
|
||||
c.findMethodByName("asd");
|
||||
c.findMethodByName("asd");
|
||||
}
|
||||
}
|
||||
|
||||
class PsiMethod implements PsiElement {
|
||||
}
|
||||
|
||||
interface PsiElement {
|
||||
}
|
||||
|
||||
class PsiClass {
|
||||
public PsiMethod findMethodByName(String methodName) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
-24
@@ -1,24 +0,0 @@
|
||||
import java.jang.String;
|
||||
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
|
||||
class PsiElement {
|
||||
}
|
||||
|
||||
class PsiClass extends PsiElement {
|
||||
}
|
||||
|
||||
class PsiElementFactory {
|
||||
public PsiClass createClass() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public class TestCompletion {
|
||||
|
||||
public void method(PsiElementFactory f) {
|
||||
PsiElement e = <caret>
|
||||
}
|
||||
}
|
||||
-26
@@ -1,26 +0,0 @@
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
public class TestIndex {
|
||||
|
||||
public void statMethod(PsiElementFactory f) {
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
}
|
||||
}
|
||||
|
||||
class PsiElement {
|
||||
}
|
||||
|
||||
class PsiClass extends PsiElement {
|
||||
}
|
||||
|
||||
class PsiElementFactory {
|
||||
public PsiClass createClass() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Copyright 2000-2013 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import java.jang.String;
|
||||
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
|
||||
class PsiElement {
|
||||
}
|
||||
|
||||
class PsiClass extends PsiElement {
|
||||
}
|
||||
|
||||
class PsiElementFactory {
|
||||
public PsiClass createClass() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public class TestCompletion {
|
||||
|
||||
public void method(PsiElementFactory f) {
|
||||
PsiElement e = <caret>
|
||||
}
|
||||
}
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Copyright 2000-2013 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
public class TestIndex {
|
||||
|
||||
public void statMethod(PsiElementFactory f) {
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
f.createClass();
|
||||
}
|
||||
}
|
||||
|
||||
class PsiElement {
|
||||
}
|
||||
|
||||
class PsiClass extends PsiElement {
|
||||
}
|
||||
|
||||
class PsiElementFactory {
|
||||
public PsiClass createClass() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user