update copyright
[fedora-idea.git] / java / java-impl / src / com / intellij / refactoring / changeSignature / CallerUsageInfo.java
blobef8ec8ab6c1adb8048b6b641a3171a1a3e244fb5
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.changeSignature;
18 import com.intellij.psi.PsiMethod;
19 import com.intellij.usageView.UsageInfo;
21 /**
22 * @author ven
24 public class CallerUsageInfo extends UsageInfo {
25 private final boolean myToInsertParameter;
26 private final boolean myToInsertException;
28 public CallerUsageInfo(final PsiMethod method, boolean isToInsertParameter, boolean isToInsertException) {
29 super(method);
30 myToInsertParameter = isToInsertParameter;
31 myToInsertException = isToInsertException;
34 public boolean isToInsertException() {
35 return myToInsertException;
38 public boolean isToInsertParameter() {
39 return myToInsertParameter;
42 public PsiMethod getMethod() {
43 return (PsiMethod)getElement();