update copyright
[fedora-idea.git] / plugins / ui-designer / testData / sourceCodeGenerator / customComponentReferencedInConstructor / BindingTest.java.after
blob008fb203ebdd4fa0322949e57fc46757e0f0d537
1 /*
2  * Copyright 2000-2009 JetBrains s.r.o.
3  *
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
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 import javax.swing.*;
18 public class BindingTest {
19     private int a;
20     public JComponent myRootComponent;
21     private JLabel myLabel;
23     public BindingTest() {
24         a = 0;
25         $$$setupUI$$$();
26         myLabel.setText("My Text");
27     }
29     private void createUIComponents() {
30         myLabel = new JLabel();
31     }
33     /**
34      * Method generated by IntelliJ IDEA GUI Designer
35      * >>> IMPORTANT!! <<<
36      * DO NOT edit this method OR call it in your code!
37      *
38      * @noinspection ALL
39      */
40     private void $$$setupUI$$$() {
41         createUIComponents();
42         myRootComponent = new JPanel();
43         myRootComponent.setLayout(new com.intellij.uiDesigner.core.GridLayoutManager(1, 1, new java.awt.Insets(0, 0, 0, 0), -1, -1));
44         myRootComponent.add(myLabel, new com.intellij.uiDesigner.core.GridConstraints(0, 0, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
45     }
47     /**
48      * @noinspection ALL
49      */
50     public JComponent $$$getRootComponent$$$() {
51         return myRootComponent;
52     }