File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/com/magento/idea/magento2plugin Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 3
3
* See COPYING.txt for license details.
4
4
*/
5
5
6
- package com .magento .idea .magento2plugin .generation .php ;
6
+ package com .magento .idea .magento2plugin .generation .php ;//NOPMD
7
7
8
8
import com .intellij .openapi .fileChooser .FileChooserDescriptor ;
9
9
import com .intellij .openapi .fileChooser .FileChooserDescriptorFactory ;
@@ -86,6 +86,7 @@ private void addPathListener() {
86
86
descriptor ,
87
87
TextComponentAccessor .TEXT_FIELD_WHOLE_TEXT
88
88
) {
89
+ @ Override
89
90
protected VirtualFile getInitialFile () {
90
91
String directoryName = this .getComponentText ();
91
92
if (!StringUtil .isEmptyOrSpaces (directoryName )) {
@@ -186,21 +187,25 @@ public void addSettingsStateListener(final ProjectGeneratorPeer.SettingsListener
186
187
187
188
private void addComponentChangesListener (final Runnable listener ) {
188
189
this .magentoPath .getTextField ().getDocument ().addDocumentListener (new DocumentAdapter () {
190
+ @ Override
189
191
protected void textChanged (final @ NotNull DocumentEvent event ) {
190
192
listener .run ();
191
193
}
192
194
});
193
195
this .moduleName .getDocument ().addDocumentListener (new DocumentAdapter () {
196
+ @ Override
194
197
protected void textChanged (final @ NotNull DocumentEvent event ) {
195
198
listener .run ();
196
199
}
197
200
});
198
201
this .packageName .getDocument ().addDocumentListener (new DocumentAdapter () {
202
+ @ Override
199
203
protected void textChanged (final @ NotNull DocumentEvent event ) {
200
204
listener .run ();
201
205
}
202
206
});
203
207
this .moduleVersion .getDocument ().addDocumentListener (new DocumentAdapter () {
208
+ @ Override
204
209
protected void textChanged (final @ NotNull DocumentEvent event ) {
205
210
listener .run ();
206
211
}
Original file line number Diff line number Diff line change 3
3
* See COPYING.txt for license details.
4
4
*/
5
5
6
- package com .magento .idea .magento2plugin .inspections .xml ;
6
+ package com .magento .idea .magento2plugin .inspections .xml ;//NOPMD
7
7
8
8
import com .intellij .codeInspection .ProblemHighlightType ;
9
9
import com .intellij .codeInspection .ProblemsHolder ;
You can’t perform that action at this time.
0 commit comments