update copyright
[fedora-idea.git] / java / java-impl / src / com / intellij / refactoring / inline / InlineParameterDialog.java
blob215220b1d8778ff40368925d64b98c2f6ab87ee0
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.inline;
18 import com.intellij.openapi.project.Project;
19 import com.intellij.refactoring.RefactoringBundle;
20 import com.intellij.refactoring.util.RefactoringMessageDialog;
21 import org.jetbrains.annotations.NonNls;
23 import javax.swing.*;
24 import java.awt.*;
26 /**
27 * @author yole
29 public class InlineParameterDialog extends RefactoringMessageDialog {
30 private JCheckBox myCreateLocalCheckbox;
32 public InlineParameterDialog(String title, String message, String helpTopic, @NonNls String iconId, boolean showCancelButton, Project project) {
33 super(title, message, helpTopic, iconId, showCancelButton, project);
36 protected JComponent createNorthPanel() {
37 JComponent superPanel = super.createNorthPanel();
38 JPanel panel = new JPanel(new BorderLayout());
39 panel.add(superPanel, BorderLayout.CENTER);
40 myCreateLocalCheckbox = new JCheckBox(RefactoringBundle.message("inline.parameter.replace.with.local.checkbox"));
41 panel.add(myCreateLocalCheckbox, BorderLayout.SOUTH);
42 return panel;
45 public boolean isCreateLocal() {
46 return myCreateLocalCheckbox.isSelected();
49 public boolean showDialog() {
50 show();
51 return isOK();