Skip to content

Commit f26fb17

Browse files
authored
Merge pull request #24 from danmooney2/copyright
Add Copyright Headers
2 parents b47081c + 55eb4f4 commit f26fb17

File tree

70 files changed

+286
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+286
-0
lines changed

META-INF/plugin.xml

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
/**
3+
* Copyright © Dmytro Kvashnin. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
-->
17
<idea-plugin>
28
<id>com.magento.idea.magento2plugin</id>
39
<name>Magento PhpStorm</name>

magento2plugin.iml

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Dmytro Kvashnin. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
28
<module type="PLUGIN_MODULE" version="4">
39
<component name="DevKit.ModuleBuildProperties" url="file://$MODULE_DIR$/META-INF/plugin.xml" />
410
<component name="NewModuleRootManager" inherit-compiler-output="true">

src/com/magento/idea/magento2plugin/MagentoIcons.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin;
26

37
import com.intellij.openapi.util.IconLoader;

src/com/magento/idea/magento2plugin/completion/provider/CompositeCompletionProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/EventNameCompletionContributor.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/FilePathCompletionProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/LayoutBlockCompletionContributor.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/LayoutContainerCompletionContributor.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/LayoutUpdateCompletionContributor.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/ModuleNameCompletionProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/PhpClassCompletionProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/PhpClassMemberCompletionProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/PhpConstructorArgumentCompletionProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/PhpServiceMethodCompletionContributor.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/provider/VirtualTypeCompletionProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.provider;
26

37
import com.intellij.codeInsight.completion.CompletionParameters;

src/com/magento/idea/magento2plugin/completion/xml/XmlCompletionContributor.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.completion.xml;
26

37
import com.intellij.codeInsight.completion.CompletionContributor;

src/com/magento/idea/magento2plugin/indexes/DiIndex.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.indexes;
26

37
import com.intellij.codeInsight.completion.PrefixMatcher;

src/com/magento/idea/magento2plugin/indexes/EventIndex.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.indexes;
26

37
import com.intellij.openapi.project.Project;

src/com/magento/idea/magento2plugin/indexes/IndexManager.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.indexes;
26

37
import com.intellij.util.indexing.FileBasedIndexImpl;

src/com/magento/idea/magento2plugin/indexes/LayoutIndex.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.indexes;
26

37
import com.intellij.ide.highlighter.XmlFileType;

src/com/magento/idea/magento2plugin/indexes/XmlIndex.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.indexes;
26

37
import com.intellij.openapi.project.Project;

src/com/magento/idea/magento2plugin/php/linemarker/ClassConfigurationLineMarkerProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.linemarker;
26

37
import com.intellij.codeInsight.daemon.LineMarkerInfo;

src/com/magento/idea/magento2plugin/php/linemarker/PluginLineMarkerProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.linemarker;
26

37
import com.intellij.codeInsight.daemon.LineMarkerInfo;

src/com/magento/idea/magento2plugin/php/linemarker/WebApiLineMarkerProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.linemarker;
26

37
import com.intellij.codeInsight.daemon.LineMarkerInfo;

src/com/magento/idea/magento2plugin/php/module/ComposerPackageModel.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.module;
26

37
import org.jetbrains.annotations.Nullable;

src/com/magento/idea/magento2plugin/php/module/ComposerPackageModelImpl.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.module;
26

37
import com.intellij.json.psi.*;

src/com/magento/idea/magento2plugin/php/module/MagentoComponent.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.module;
26

37
import com.intellij.psi.PsiDirectory;

src/com/magento/idea/magento2plugin/php/module/MagentoComponentImp.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.module;
26

37
import com.intellij.psi.PsiDirectory;

src/com/magento/idea/magento2plugin/php/module/MagentoComponentManager.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.module;
26

37
import com.intellij.json.psi.JsonFile;

src/com/magento/idea/magento2plugin/php/module/MagentoModule.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.module;
26

37
/**

src/com/magento/idea/magento2plugin/php/util/PhpPatternsHelper.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.util;
26

37
import com.intellij.patterns.ElementPattern;

src/com/magento/idea/magento2plugin/php/util/PhpRegex.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.php.util;
26

37
public class PhpRegex {

src/com/magento/idea/magento2plugin/project/ProjectDetector.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.project;
26

37
import com.intellij.notification.Notification;

src/com/magento/idea/magento2plugin/project/Settings.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.project;
26

37
import com.intellij.openapi.components.*;

src/com/magento/idea/magento2plugin/project/SettingsForm.form

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Dmytro Kvashnin. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
28
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="com.magento.idea.magento2plugin.project.SettingsForm">
39
<grid id="27dc6" binding="panel1" default-binding="true" layout-manager="GridLayoutManager" row-count="2" column-count="4" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
410
<margin top="0" left="0" bottom="0" right="0"/>

src/com/magento/idea/magento2plugin/project/SettingsForm.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.project;
26

37
import com.intellij.javaee.ExternalResourceManager;

src/com/magento/idea/magento2plugin/reference/js/JsReferenceContributor.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.js;
26

37
import com.intellij.lang.javascript.patterns.JSPatterns;

src/com/magento/idea/magento2plugin/reference/php/PhpReferenceContributor.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.php;
26

37
import com.intellij.psi.PsiReferenceContributor;

src/com/magento/idea/magento2plugin/reference/provider/CompositeReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.psi.PsiElement;

src/com/magento/idea/magento2plugin/reference/provider/EventDispatchReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.ide.highlighter.XmlFileType;

src/com/magento/idea/magento2plugin/reference/provider/EventNameReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.text.StringUtil;

src/com/magento/idea/magento2plugin/reference/provider/FilePathReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.TextRange;

src/com/magento/idea/magento2plugin/reference/provider/LayoutBlockReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.text.StringUtil;

src/com/magento/idea/magento2plugin/reference/provider/LayoutContainerReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.text.StringUtil;

src/com/magento/idea/magento2plugin/reference/provider/LayoutUpdateReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.text.StringUtil;

src/com/magento/idea/magento2plugin/reference/provider/ModuleNameReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.TextRange;

src/com/magento/idea/magento2plugin/reference/provider/PhpClassMemberReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.TextRange;

src/com/magento/idea/magento2plugin/reference/provider/PhpClassReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.TextRange;

src/com/magento/idea/magento2plugin/reference/provider/PhpConstructorArgumentReferenceProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Copyright © Dmytro Kvashnin. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
15
package com.magento.idea.magento2plugin.reference.provider;
26

37
import com.intellij.openapi.util.text.StringUtil;

0 commit comments

Comments
 (0)