Revision 41335 trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.app/org.gvsig.app.mainplugin/src/main/java/org/gvsig/app/extension/develtools/EditingListenerPanelLayout.java

View differences:

EditingListenerPanelLayout.java
68 68
        jScrollPane2 = new JScrollPane();
69 69
        txtNotifications = new JTextPane();
70 70
        chkShowFeatureInForm = new JCheckBox();
71
        chkSkipFeatureValidation = new JCheckBox();
71 72

  
72 73
        setBorder(null);
73 74
        GridBagLayout layout = new GridBagLayout();
......
86 87
        btnClose.setText("Close");
87 88
        gridBagConstraints = new GridBagConstraints();
88 89
        gridBagConstraints.gridx = 3;
89
        gridBagConstraints.gridy = 8;
90
        gridBagConstraints.gridy = 10;
90 91
        gridBagConstraints.anchor = GridBagConstraints.LINE_END;
91 92
        add(btnClose, gridBagConstraints);
92 93

  
93 94
        btnClear.setText("Clear");
94 95
        gridBagConstraints = new GridBagConstraints();
95 96
        gridBagConstraints.gridx = 2;
96
        gridBagConstraints.gridy = 8;
97
        gridBagConstraints.gridy = 10;
97 98
        gridBagConstraints.anchor = GridBagConstraints.LINE_END;
98 99
        add(btnClear, gridBagConstraints);
99 100
        gridBagConstraints = new GridBagConstraints();
......
132 133
        gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;
133 134
        gridBagConstraints.anchor = GridBagConstraints.LINE_START;
134 135
        add(chkShowFeatureInForm, gridBagConstraints);
136

  
137
        chkSkipFeatureValidation.setText("Skip feature validation");
138
        gridBagConstraints = new GridBagConstraints();
139
        gridBagConstraints.gridx = 2;
140
        gridBagConstraints.gridy = 8;
141
        gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;
142
        gridBagConstraints.anchor = GridBagConstraints.LINE_START;
143
        add(chkSkipFeatureValidation, gridBagConstraints);
135 144
    }// </editor-fold>//GEN-END:initComponents
136 145

  
137 146

  
......
140 149
    protected JButton btnClose;
141 150
    protected JCheckBox chkAskToAceptNotification;
142 151
    protected JCheckBox chkShowFeatureInForm;
152
    protected JCheckBox chkSkipFeatureValidation;
143 153
    protected JScrollPane jScrollPane2;
144 154
    protected JSeparator jSeparator1;
145 155
    protected JSeparator jSeparator2;

Also available in: Unified diff