Skip to content

Commit ebade33

Browse files
author
Ludovic Richoux
committed
new(License) Adding license headers
1 parent 0f2b83b commit ebade33

22 files changed

+308
-0
lines changed

src/main/java/fr/inria/inspectorguidget/api/analyser/Command.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import fr.inria.inspectorguidget.internal.helper.CodeBlockPos;

src/main/java/fr/inria/inspectorguidget/api/analyser/CommandAnalyser.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import fr.inria.inspectorguidget.internal.filter.BasicFilter;

src/main/java/fr/inria/inspectorguidget/api/analyser/CommandConditionEntry.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import fr.inria.inspectorguidget.internal.helper.SpoonHelper;

src/main/java/fr/inria/inspectorguidget/api/analyser/CommandStatmtEntry.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import fr.inria.inspectorguidget.internal.filter.FindElementFilter;

src/main/java/fr/inria/inspectorguidget/api/analyser/CommandWidgetFinder.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import fr.inria.inspectorguidget.internal.filter.BasicFilter;

src/main/java/fr/inria/inspectorguidget/api/analyser/GUIListenerAnalyser.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import fr.inria.inspectorguidget.api.processor.ClassListenerProcessor;

src/main/java/fr/inria/inspectorguidget/api/analyser/InspectorGuidetAnalyser.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import fr.inria.inspectorguidget.internal.helper.ExecArg;

src/main/java/fr/inria/inspectorguidget/api/analyser/UIDataAnalyser.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import fr.inria.inspectorguidget.api.UIDataExtractor;

src/main/java/fr/inria/inspectorguidget/api/analyser/UIListener.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.analyser;
216

317
import java.util.ArrayList;

src/main/java/fr/inria/inspectorguidget/api/processor/ActionProcessor.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* This file is part of InspectorGuidget.
3+
* InspectorGuidget is free software: you can redistribute it and/or modify
4+
* it under the terms of the GNU General Public License as published by
5+
* the Free Software Foundation, either version 3 of the License, or
6+
* (at your option) any later version.
7+
* InspectorGuidget is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
* GNU General Public License for more details.
11+
* You should have received a copy of the GNU General Public License
12+
* along with InspectorGuidget. If not, see <https://www.gnu.org/licenses/>.
13+
*/
14+
115
package fr.inria.inspectorguidget.api.processor;
216

317
import fr.inria.inspectorguidget.internal.helper.WidgetHelper;

0 commit comments

Comments
 (0)