Skip to content

Commit 93f2765

Browse files
committed
add copyright comment
1 parent 0c9b2c0 commit 93f2765

18 files changed

+72
-0
lines changed

src/main/java/com/chuntung/plugin/gistsnippet/action/AddAction.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.action;
26

37
import com.intellij.openapi.actionSystem.AnAction;

src/main/java/com/chuntung/plugin/gistsnippet/action/CustomComboBoxAction.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.action;
26

37
import com.intellij.openapi.actionSystem.AnAction;

src/main/java/com/chuntung/plugin/gistsnippet/action/DeleteAction.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.action;
26

37
import com.chuntung.plugin.gistsnippet.dto.ScopeEnum;

src/main/java/com/chuntung/plugin/gistsnippet/action/EditAction.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.action;
26

37
import com.intellij.openapi.actionSystem.AnAction;

src/main/java/com/chuntung/plugin/gistsnippet/action/InsertAction.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.action;
26

37
import com.chuntung.plugin.gistsnippet.view.InsertGistDialog;

src/main/java/com/chuntung/plugin/gistsnippet/action/OpenInBrowserAction.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.action;
26

37
import com.chuntung.plugin.gistsnippet.dto.SnippetNodeDTO;

src/main/java/com/chuntung/plugin/gistsnippet/dto/ScopeEnum.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.dto;
26

37
public enum ScopeEnum {

src/main/java/com/chuntung/plugin/gistsnippet/dto/SnippetNodeDTO.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.dto;
26

37
import com.chuntung.plugin.gistsnippet.dto.api.GistDTO;

src/main/java/com/chuntung/plugin/gistsnippet/dto/SnippetRootNode.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.dto;
26

37
import com.chuntung.plugin.gistsnippet.dto.api.GistDTO;

src/main/java/com/chuntung/plugin/gistsnippet/dto/api/GistDTO.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.dto.api;
26

37
import com.fasterxml.jackson.annotation.JsonProperty;

src/main/java/com/chuntung/plugin/gistsnippet/dto/api/GistFileDTO.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.dto.api;
26

37
import com.google.gson.annotations.SerializedName;

src/main/java/com/chuntung/plugin/gistsnippet/dto/api/GistOwnerDTO.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.dto.api;
26

37
import com.google.gson.annotations.SerializedName;

src/main/java/com/chuntung/plugin/gistsnippet/service/GistException.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.service;
26

37
public class GistException extends RuntimeException {

src/main/java/com/chuntung/plugin/gistsnippet/service/GithubAccountHolder.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.service;
26

37

src/main/java/com/chuntung/plugin/gistsnippet/view/CustomDropDownLink.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.view;
26

37
import com.intellij.openapi.ui.popup.JBPopupFactory;

src/main/java/com/chuntung/plugin/gistsnippet/view/CustomTreeStructure.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.view;
26

37
import com.chuntung.plugin.gistsnippet.dto.SnippetNodeDTO;

src/main/java/com/chuntung/plugin/gistsnippet/view/InsertGistDialog.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
15
package com.chuntung.plugin.gistsnippet.view;
26

37
import com.chuntung.plugin.gistsnippet.action.CustomComboBoxAction;

src/main/resources/META-INF/plugin.xml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
~ Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
-->
4+
15
<idea-plugin>
26
<id>com.chuntung.plugin.gistsnippet</id>
37
<name>Gist Snippet</name>

0 commit comments

Comments
 (0)