update copyright
[fedora-idea.git] / plugins / ui-designer / src / com / intellij / uiDesigner / clientProperties / ClassNameInputDialog.java
blobedbd68881d371658cbe00cf91fdd7014dc2a2508
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.
17 package com.intellij.uiDesigner.clientProperties;
19 import com.intellij.openapi.fileTypes.StdFileTypes;
20 import com.intellij.openapi.project.Project;
21 import com.intellij.openapi.ui.DialogWrapper;
22 import com.intellij.psi.*;
23 import com.intellij.ui.EditorTextField;
24 import com.intellij.uiDesigner.UIDesignerBundle;
25 import org.jetbrains.annotations.Nullable;
27 import javax.swing.*;
28 import java.awt.*;
30 /**
31 * @author yole
33 public class ClassNameInputDialog extends DialogWrapper {
34 private EditorTextField myEditorTextField1;
35 private JPanel myRootPanel;
36 private final Project myProject;
38 public ClassNameInputDialog(Project project, Component parent) {
39 super(parent, false);
40 myProject = project;
41 init();
42 setTitle(UIDesignerBundle.message("client.properties.title"));
45 private void createUIComponents() {
46 myEditorTextField1 = new EditorTextField("", myProject, StdFileTypes.JAVA);
47 final PsiManager manager = PsiManager.getInstance(myProject);
48 final PsiElementFactory factory = JavaPsiFacade.getInstance(manager.getProject()).getElementFactory();
49 PsiPackage defaultPackage = JavaPsiFacade.getInstance(manager.getProject()).findPackage("");
50 final PsiCodeFragment fragment = factory.createReferenceCodeFragment("", defaultPackage, true, true);
51 myEditorTextField1.setDocument(PsiDocumentManager.getInstance(manager.getProject()).getDocument(fragment));
54 @Override
55 public JComponent getPreferredFocusedComponent() {
56 return myEditorTextField1;
59 @Nullable
60 protected JComponent createCenterPanel() {
61 return myRootPanel;
64 public String getClassName() {
65 return myEditorTextField1.getDocument().getText();