update copyright
[fedora-idea.git] / java / java-impl / src / com / intellij / refactoring / introduceParameter / IntroduceParameterData.java
blob38e8c5af5cdf3b1fba8e4dd03067c72ffdf161d4
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.refactoring.introduceParameter;
18 import org.jetbrains.annotations.NotNull;
19 import com.intellij.openapi.project.Project;
20 import com.intellij.psi.PsiMethod;
21 import com.intellij.psi.PsiExpression;
22 import com.intellij.psi.PsiLocalVariable;
23 import com.intellij.psi.PsiType;
24 import gnu.trove.TIntArrayList;
26 public interface IntroduceParameterData {
27 @NotNull
28 Project getProject();
30 PsiMethod getMethodToReplaceIn();
32 @NotNull
33 PsiMethod getMethodToSearchFor();
35 PsiExpression getParameterInitializer();
37 PsiExpression getExpressionToSearch();
39 PsiLocalVariable getLocalVariable();
41 boolean isRemoveLocalVariable();
43 @NotNull
44 String getParameterName();
46 boolean isReplaceAllOccurences();
48 int getReplaceFieldsWithGetters();
50 boolean isDeclareFinal();
52 boolean isGenerateDelegate();
54 PsiType getForcedType();
56 @NotNull
57 TIntArrayList getParametersToRemove();