From f8a1c34f4e2a46defffc1ab232e5bd557aeee025 Mon Sep 17 00:00:00 2001 From: nvinayshetty Date: Sun, 28 Jun 2015 20:03:42 +0530 Subject: [PATCH] updated copyright --- .idea/copyright/Dto_Generator.xml | 9 +++++++++ .idea/copyright/profiles_settings.xml | 2 +- .../ContextMenuMouseListener.java | 18 ++++++++++++++++++ .../ActionListener/UserActionListener.java | 17 +++++++++++++++++ .../ClassCreator/ClassCreationFactory.java | 17 +++++++++++++++++ .../ClassCreator/ClassCreatorStrategy.java | 17 +++++++++++++++++ .../DTOnator/ClassCreator/ClassType.java | 17 +++++++++++++++++ .../ClassCreator/EncapsulatedClassCreator.java | 17 +++++++++++++++++ .../ClassCreator/PublicClassCreator.java | 17 +++++++++++++++++ .../ClassCreator/StaticClassCreator.java | 17 +++++++++++++++++ .../DtoCreators/DtoCreationOptionsFacade.java | 17 +++++++++++++++++ .../DtoCreators/DtoGenerationFactory.java | 17 +++++++++++++++++ .../DTOnator/DtoCreators/FeedType.java | 17 +++++++++++++++++ .../DtoCreators/FieldEncapsulationOptions.java | 17 +++++++++++++++++ .../DTOnator/DtoCreators/FieldType.java | 17 +++++++++++++++++ .../DTOnator/FeedParser/JsonDtoGenerator.java | 17 +++++++++++++++++ .../DTOnator/FeedValidator/FeedValidator.java | 17 +++++++++++++++++ .../InputFeedValidationFactory.java | 17 +++++++++++++++++ .../FeedValidator/JsonFeedValidator.java | 17 +++++++++++++++++ .../DTOnator/FieldCreator/AccessModifier.java | 17 +++++++++++++++++ .../FieldCreator/FieldCreationFactory.java | 17 +++++++++++++++++ .../FieldCreator/FieldCreationStrategy.java | 17 +++++++++++++++++ .../FieldCreator/FieldRepresentor.java | 17 +++++++++++++++++ .../FieldCreator/GsonFieldCreator.java | 17 +++++++++++++++++ .../FieldCreator/JavaFieldFactory.java | 17 +++++++++++++++++ .../FieldCreator/SimpleFieldCreator.java | 17 +++++++++++++++++ .../FieldCreator/primitiveConverter.java | 17 +++++++++++++++++ .../DTOnator/Logger/ExceptionLogger.java | 17 +++++++++++++++++ .../nvinayshetty/DTOnator/Ui/InputWindow.java | 17 +++++++++++++++++ .../DTOnator/Utility/DtoHelper.java | 17 +++++++++++++++++ 30 files changed, 487 insertions(+), 1 deletion(-) create mode 100644 .idea/copyright/Dto_Generator.xml diff --git a/.idea/copyright/Dto_Generator.xml b/.idea/copyright/Dto_Generator.xml new file mode 100644 index 0000000..62cd0a8 --- /dev/null +++ b/.idea/copyright/Dto_Generator.xml @@ -0,0 +1,9 @@ + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml index e7bedf3..e0dcadc 100644 --- a/.idea/copyright/profiles_settings.xml +++ b/.idea/copyright/profiles_settings.xml @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/src/com/nvinayshetty/DTOnator/ActionListener/ContextMenuMouseListener.java b/src/com/nvinayshetty/DTOnator/ActionListener/ContextMenuMouseListener.java index 9bd32a6..2344daf 100644 --- a/src/com/nvinayshetty/DTOnator/ActionListener/ContextMenuMouseListener.java +++ b/src/com/nvinayshetty/DTOnator/ActionListener/ContextMenuMouseListener.java @@ -1,3 +1,21 @@ + +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.ActionListener; import javax.swing.*; diff --git a/src/com/nvinayshetty/DTOnator/ActionListener/UserActionListener.java b/src/com/nvinayshetty/DTOnator/ActionListener/UserActionListener.java index 18ed466..53ebabb 100644 --- a/src/com/nvinayshetty/DTOnator/ActionListener/UserActionListener.java +++ b/src/com/nvinayshetty/DTOnator/ActionListener/UserActionListener.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.ActionListener; import com.intellij.openapi.actionSystem.*; diff --git a/src/com/nvinayshetty/DTOnator/ClassCreator/ClassCreationFactory.java b/src/com/nvinayshetty/DTOnator/ClassCreator/ClassCreationFactory.java index 33b75d8..18eb879 100644 --- a/src/com/nvinayshetty/DTOnator/ClassCreator/ClassCreationFactory.java +++ b/src/com/nvinayshetty/DTOnator/ClassCreator/ClassCreationFactory.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.ClassCreator; import com.intellij.psi.PsiClass; diff --git a/src/com/nvinayshetty/DTOnator/ClassCreator/ClassCreatorStrategy.java b/src/com/nvinayshetty/DTOnator/ClassCreator/ClassCreatorStrategy.java index 41a7151..4709331 100644 --- a/src/com/nvinayshetty/DTOnator/ClassCreator/ClassCreatorStrategy.java +++ b/src/com/nvinayshetty/DTOnator/ClassCreator/ClassCreatorStrategy.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.ClassCreator; import com.intellij.psi.PsiClass; diff --git a/src/com/nvinayshetty/DTOnator/ClassCreator/ClassType.java b/src/com/nvinayshetty/DTOnator/ClassCreator/ClassType.java index 47cdc0a..a696bc1 100644 --- a/src/com/nvinayshetty/DTOnator/ClassCreator/ClassType.java +++ b/src/com/nvinayshetty/DTOnator/ClassCreator/ClassType.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.ClassCreator; /** diff --git a/src/com/nvinayshetty/DTOnator/ClassCreator/EncapsulatedClassCreator.java b/src/com/nvinayshetty/DTOnator/ClassCreator/EncapsulatedClassCreator.java index e565459..70143eb 100644 --- a/src/com/nvinayshetty/DTOnator/ClassCreator/EncapsulatedClassCreator.java +++ b/src/com/nvinayshetty/DTOnator/ClassCreator/EncapsulatedClassCreator.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.ClassCreator; import com.intellij.psi.JavaPsiFacade; diff --git a/src/com/nvinayshetty/DTOnator/ClassCreator/PublicClassCreator.java b/src/com/nvinayshetty/DTOnator/ClassCreator/PublicClassCreator.java index 7827544..5d1bb46 100644 --- a/src/com/nvinayshetty/DTOnator/ClassCreator/PublicClassCreator.java +++ b/src/com/nvinayshetty/DTOnator/ClassCreator/PublicClassCreator.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.ClassCreator; import com.intellij.psi.PsiClass; diff --git a/src/com/nvinayshetty/DTOnator/ClassCreator/StaticClassCreator.java b/src/com/nvinayshetty/DTOnator/ClassCreator/StaticClassCreator.java index ed52616..74dbc5b 100644 --- a/src/com/nvinayshetty/DTOnator/ClassCreator/StaticClassCreator.java +++ b/src/com/nvinayshetty/DTOnator/ClassCreator/StaticClassCreator.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.ClassCreator; import com.intellij.psi.PsiClass; diff --git a/src/com/nvinayshetty/DTOnator/DtoCreators/DtoCreationOptionsFacade.java b/src/com/nvinayshetty/DTOnator/DtoCreators/DtoCreationOptionsFacade.java index 1b27516..190def8 100644 --- a/src/com/nvinayshetty/DTOnator/DtoCreators/DtoCreationOptionsFacade.java +++ b/src/com/nvinayshetty/DTOnator/DtoCreators/DtoCreationOptionsFacade.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.DtoCreators; import com.nvinayshetty.DTOnator.ClassCreator.ClassCreatorStrategy; diff --git a/src/com/nvinayshetty/DTOnator/DtoCreators/DtoGenerationFactory.java b/src/com/nvinayshetty/DTOnator/DtoCreators/DtoGenerationFactory.java index 0e00fe7..5b92e66 100644 --- a/src/com/nvinayshetty/DTOnator/DtoCreators/DtoGenerationFactory.java +++ b/src/com/nvinayshetty/DTOnator/DtoCreators/DtoGenerationFactory.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.DtoCreators; import com.intellij.openapi.command.WriteCommandAction; diff --git a/src/com/nvinayshetty/DTOnator/DtoCreators/FeedType.java b/src/com/nvinayshetty/DTOnator/DtoCreators/FeedType.java index 10aa7ed..7a73c57 100644 --- a/src/com/nvinayshetty/DTOnator/DtoCreators/FeedType.java +++ b/src/com/nvinayshetty/DTOnator/DtoCreators/FeedType.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.DtoCreators; /** diff --git a/src/com/nvinayshetty/DTOnator/DtoCreators/FieldEncapsulationOptions.java b/src/com/nvinayshetty/DTOnator/DtoCreators/FieldEncapsulationOptions.java index 9d866d9..5cfcf89 100644 --- a/src/com/nvinayshetty/DTOnator/DtoCreators/FieldEncapsulationOptions.java +++ b/src/com/nvinayshetty/DTOnator/DtoCreators/FieldEncapsulationOptions.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.DtoCreators; /** diff --git a/src/com/nvinayshetty/DTOnator/DtoCreators/FieldType.java b/src/com/nvinayshetty/DTOnator/DtoCreators/FieldType.java index 1c297f4..d0c349e 100644 --- a/src/com/nvinayshetty/DTOnator/DtoCreators/FieldType.java +++ b/src/com/nvinayshetty/DTOnator/DtoCreators/FieldType.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.DtoCreators; /** diff --git a/src/com/nvinayshetty/DTOnator/FeedParser/JsonDtoGenerator.java b/src/com/nvinayshetty/DTOnator/FeedParser/JsonDtoGenerator.java index 33d162f..8fcefb7 100644 --- a/src/com/nvinayshetty/DTOnator/FeedParser/JsonDtoGenerator.java +++ b/src/com/nvinayshetty/DTOnator/FeedParser/JsonDtoGenerator.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FeedParser; import com.intellij.openapi.command.WriteCommandAction; diff --git a/src/com/nvinayshetty/DTOnator/FeedValidator/FeedValidator.java b/src/com/nvinayshetty/DTOnator/FeedValidator/FeedValidator.java index 6f683b3..748b197 100644 --- a/src/com/nvinayshetty/DTOnator/FeedValidator/FeedValidator.java +++ b/src/com/nvinayshetty/DTOnator/FeedValidator/FeedValidator.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FeedValidator; import javax.swing.*; diff --git a/src/com/nvinayshetty/DTOnator/FeedValidator/InputFeedValidationFactory.java b/src/com/nvinayshetty/DTOnator/FeedValidator/InputFeedValidationFactory.java index c78fd25..fc626bd 100644 --- a/src/com/nvinayshetty/DTOnator/FeedValidator/InputFeedValidationFactory.java +++ b/src/com/nvinayshetty/DTOnator/FeedValidator/InputFeedValidationFactory.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FeedValidator; import com.nvinayshetty.DTOnator.DtoCreators.FeedType; diff --git a/src/com/nvinayshetty/DTOnator/FeedValidator/JsonFeedValidator.java b/src/com/nvinayshetty/DTOnator/FeedValidator/JsonFeedValidator.java index 7d6d292..415d1c1 100644 --- a/src/com/nvinayshetty/DTOnator/FeedValidator/JsonFeedValidator.java +++ b/src/com/nvinayshetty/DTOnator/FeedValidator/JsonFeedValidator.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FeedValidator; import com.nvinayshetty.DTOnator.Logger.ExceptionLogger; diff --git a/src/com/nvinayshetty/DTOnator/FieldCreator/AccessModifier.java b/src/com/nvinayshetty/DTOnator/FieldCreator/AccessModifier.java index 25966db..3f9ad8b 100644 --- a/src/com/nvinayshetty/DTOnator/FieldCreator/AccessModifier.java +++ b/src/com/nvinayshetty/DTOnator/FieldCreator/AccessModifier.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FieldCreator; /** diff --git a/src/com/nvinayshetty/DTOnator/FieldCreator/FieldCreationFactory.java b/src/com/nvinayshetty/DTOnator/FieldCreator/FieldCreationFactory.java index 7029776..33d8a3d 100644 --- a/src/com/nvinayshetty/DTOnator/FieldCreator/FieldCreationFactory.java +++ b/src/com/nvinayshetty/DTOnator/FieldCreator/FieldCreationFactory.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FieldCreator; import com.nvinayshetty.DTOnator.DtoCreators.FieldType; diff --git a/src/com/nvinayshetty/DTOnator/FieldCreator/FieldCreationStrategy.java b/src/com/nvinayshetty/DTOnator/FieldCreator/FieldCreationStrategy.java index f221e05..45625b9 100644 --- a/src/com/nvinayshetty/DTOnator/FieldCreator/FieldCreationStrategy.java +++ b/src/com/nvinayshetty/DTOnator/FieldCreator/FieldCreationStrategy.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FieldCreator; /** diff --git a/src/com/nvinayshetty/DTOnator/FieldCreator/FieldRepresentor.java b/src/com/nvinayshetty/DTOnator/FieldCreator/FieldRepresentor.java index 3343788..8dbe72e 100644 --- a/src/com/nvinayshetty/DTOnator/FieldCreator/FieldRepresentor.java +++ b/src/com/nvinayshetty/DTOnator/FieldCreator/FieldRepresentor.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FieldCreator; import com.nvinayshetty.DTOnator.Utility.DtoHelper; diff --git a/src/com/nvinayshetty/DTOnator/FieldCreator/GsonFieldCreator.java b/src/com/nvinayshetty/DTOnator/FieldCreator/GsonFieldCreator.java index 453814b..7e467b9 100644 --- a/src/com/nvinayshetty/DTOnator/FieldCreator/GsonFieldCreator.java +++ b/src/com/nvinayshetty/DTOnator/FieldCreator/GsonFieldCreator.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FieldCreator; /** diff --git a/src/com/nvinayshetty/DTOnator/FieldCreator/JavaFieldFactory.java b/src/com/nvinayshetty/DTOnator/FieldCreator/JavaFieldFactory.java index faec8fd..25a9bdb 100644 --- a/src/com/nvinayshetty/DTOnator/FieldCreator/JavaFieldFactory.java +++ b/src/com/nvinayshetty/DTOnator/FieldCreator/JavaFieldFactory.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FieldCreator; /** diff --git a/src/com/nvinayshetty/DTOnator/FieldCreator/SimpleFieldCreator.java b/src/com/nvinayshetty/DTOnator/FieldCreator/SimpleFieldCreator.java index 7a3ef30..4ba966b 100644 --- a/src/com/nvinayshetty/DTOnator/FieldCreator/SimpleFieldCreator.java +++ b/src/com/nvinayshetty/DTOnator/FieldCreator/SimpleFieldCreator.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FieldCreator; /** diff --git a/src/com/nvinayshetty/DTOnator/FieldCreator/primitiveConverter.java b/src/com/nvinayshetty/DTOnator/FieldCreator/primitiveConverter.java index b55fafd..8494cb3 100644 --- a/src/com/nvinayshetty/DTOnator/FieldCreator/primitiveConverter.java +++ b/src/com/nvinayshetty/DTOnator/FieldCreator/primitiveConverter.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.FieldCreator; /** diff --git a/src/com/nvinayshetty/DTOnator/Logger/ExceptionLogger.java b/src/com/nvinayshetty/DTOnator/Logger/ExceptionLogger.java index 585bb48..cf898ab 100644 --- a/src/com/nvinayshetty/DTOnator/Logger/ExceptionLogger.java +++ b/src/com/nvinayshetty/DTOnator/Logger/ExceptionLogger.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.Logger; import javax.swing.*; diff --git a/src/com/nvinayshetty/DTOnator/Ui/InputWindow.java b/src/com/nvinayshetty/DTOnator/Ui/InputWindow.java index 9d4cb1d..25076cf 100644 --- a/src/com/nvinayshetty/DTOnator/Ui/InputWindow.java +++ b/src/com/nvinayshetty/DTOnator/Ui/InputWindow.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.Ui; import com.intellij.notification.Notification; diff --git a/src/com/nvinayshetty/DTOnator/Utility/DtoHelper.java b/src/com/nvinayshetty/DTOnator/Utility/DtoHelper.java index 8bd09ec..d3e681d 100644 --- a/src/com/nvinayshetty/DTOnator/Utility/DtoHelper.java +++ b/src/com/nvinayshetty/DTOnator/Utility/DtoHelper.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2015 Vinaya Prasad N + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package com.nvinayshetty.DTOnator.Utility; /**