/* * Copyright 2010-2015 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. */ package org.jetbrains.kotlin.idea.parameterInfo; import com.intellij.lang.parameterInfo.CreateParameterInfoContext; import com.intellij.lang.parameterInfo.ParameterInfoHandler; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiFile; import com.intellij.testFramework.fixtures.JavaCodeInsightTestFixture; import com.intellij.util.ArrayUtil; import org.jetbrains.annotations.NotNull; public class MockCreateParameterInfoContext implements CreateParameterInfoContext { private Object[] myItemsToShow = ArrayUtil.EMPTY_OBJECT_ARRAY; private PsiElement myHighlightedElement = null; private final JavaCodeInsightTestFixture myFixture; private final PsiFile myFile; MockCreateParameterInfoContext(PsiFile file, JavaCodeInsightTestFixture fixture) { myFile = file; myFixture = fixture; } @Override public Object[] getItemsToShow() { return myItemsToShow; } @Override public void setItemsToShow(Object[] items) { myItemsToShow = items; } @Override public void showHint(PsiElement element, int offset, ParameterInfoHandler handler) { } @Override public int getParameterListStart() { return 0; } @Override public PsiElement getHighlightedElement() { return myHighlightedElement; } @Override public void setHighlightedElement(PsiElement elements) { myHighlightedElement = elements; } @Override public Project getProject() { return myFixture.getProject(); } @Override public PsiFile getFile() { return myFile; } @Override public int getOffset() { return myFixture.getCaretOffset(); } @NotNull @Override public Editor getEditor() { return myFixture.getEditor(); } }