Skip to content

Commit 45542b6

Browse files
cmagliefacchinm
authored andcommitted
Added missing licenses
1 parent f8c1724 commit 45542b6

7 files changed

+151
-15
lines changed

Diff for: app/src/cc/arduino/autocomplete/ArduinoCompletionsList.java

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
/*
2+
* This file is part of Arduino.
3+
*
4+
* Copyright 2017 Arduino LLC (http://www.arduino.cc/)
5+
*
6+
* Arduino is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 2 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program; if not, write to the Free Software
18+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*
20+
* As a special exception, you may use this file as part of a free software
21+
* library without restriction. Specifically, if other files instantiate
22+
* templates or use macros or inline functions from this file, or you compile
23+
* this file and link it with other files to produce an executable, this
24+
* file does not by itself cause the resulting executable to be covered by
25+
* the GNU General Public License. This exception does not however
26+
* invalidate any other reasons why the executable file might be covered by
27+
* the GNU General Public License.
28+
*/
29+
130
package cc.arduino.autocomplete;
231

332
import java.util.ArrayList;

Diff for: app/src/cc/arduino/autocomplete/BaseCCompletionProvider.java

+30-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,37 @@
1+
/*
2+
* This file is part of Arduino.
3+
*
4+
* Copyright 2017 Arduino LLC (http://www.arduino.cc/)
5+
* Ricardo JL Rufino ([email protected])
6+
*
7+
* Arduino is free software; you can redistribute it and/or modify
8+
* it under the terms of the GNU General Public License as published by
9+
* the Free Software Foundation; either version 2 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program; if not, write to the Free Software
19+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20+
*
21+
* As a special exception, you may use this file as part of a free software
22+
* library without restriction. Specifically, if other files instantiate
23+
* templates or use macros or inline functions from this file, or you compile
24+
* this file and link it with other files to produce an executable, this
25+
* file does not by itself cause the resulting executable to be covered by
26+
* the GNU General Public License. This exception does not however
27+
* invalidate any other reasons why the executable file might be covered by
28+
* the GNU General Public License.
29+
*/
30+
131
package cc.arduino.autocomplete;
232

333
import org.fife.ui.autocomplete.DefaultCompletionProvider;
434

5-
/**
6-
* Base completion provider for C/C++.
7-
* @author Ricardo JL Rufino ([email protected])
8-
* @date 28/04/2017
9-
*/
1035
public class BaseCCompletionProvider extends DefaultCompletionProvider {
1136

1237
@Override

Diff for: app/src/cc/arduino/autocomplete/ClangCompletionProvider.java

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
/*
2+
* This file is part of Arduino.
3+
*
4+
* Copyright 2017 Arduino LLC (http://www.arduino.cc/)
5+
*
6+
* Arduino is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 2 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program; if not, write to the Free Software
18+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*
20+
* As a special exception, you may use this file as part of a free software
21+
* library without restriction. Specifically, if other files instantiate
22+
* templates or use macros or inline functions from this file, or you compile
23+
* this file and link it with other files to produce an executable, this
24+
* file does not by itself cause the resulting executable to be covered by
25+
* the GNU General Public License. This exception does not however
26+
* invalidate any other reasons why the executable file might be covered by
27+
* the GNU General Public License.
28+
*/
29+
130
package cc.arduino.autocomplete;
231

332
import java.util.ArrayList;

Diff for: app/src/cc/arduino/autocomplete/CompletionType.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
2-
31
/*
42
* This file is part of Arduino.
53
*
6-
* Copyright 2015 Ricardo JL Rufino ([email protected])
7-
* Copyright 2015 Arduino LLC
4+
* Copyright 2017 Arduino LLC (www.arduino.cc)
5+
* Ricardo JL Rufino ([email protected])
86
*
97
* Arduino is free software; you can redistribute it and/or modify
108
* it under the terms of the GNU General Public License as published by

Diff for: app/src/cc/arduino/autocomplete/CompletionsRenderer.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
21
/*
32
* This file is part of Arduino.
43
*
5-
* Copyright 2015 Ricardo JL Rufino ([email protected])
6-
* Copyright 2015 Arduino LLC
4+
* Copyright 2017 Arduino LLC (www.arduino.cc)
5+
* Ricardo JL Rufino ([email protected])
76
*
87
* Arduino is free software; you can redistribute it and/or modify
98
* it under the terms of the GNU General Public License as published by

Diff for: app/src/cc/arduino/autocomplete/FakeCompletionProvider.java

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
/*
2+
* This file is part of Arduino.
3+
*
4+
* Copyright 2017 Arduino LLC (http://www.arduino.cc/)
5+
*
6+
* Arduino is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 2 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program; if not, write to the Free Software
18+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*
20+
* As a special exception, you may use this file as part of a free software
21+
* library without restriction. Specifically, if other files instantiate
22+
* templates or use macros or inline functions from this file, or you compile
23+
* this file and link it with other files to produce an executable, this
24+
* file does not by itself cause the resulting executable to be covered by
25+
* the GNU General Public License. This exception does not however
26+
* invalidate any other reasons why the executable file might be covered by
27+
* the GNU General Public License.
28+
*/
29+
130
package cc.arduino.autocomplete;
231

332
import java.util.LinkedList;

Diff for: app/src/cc/arduino/autocomplete/SketchCompletionProvider.java

+30-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
/*
2+
* This file is part of Arduino.
3+
*
4+
* Copyright 2017 Arduino LLC (http://www.arduino.cc/)
5+
* Ricardo JL Rufino ([email protected])
6+
*
7+
* Arduino is free software; you can redistribute it and/or modify
8+
* it under the terms of the GNU General Public License as published by
9+
* the Free Software Foundation; either version 2 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program; if not, write to the Free Software
19+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20+
*
21+
* As a special exception, you may use this file as part of a free software
22+
* library without restriction. Specifically, if other files instantiate
23+
* templates or use macros or inline functions from this file, or you compile
24+
* this file and link it with other files to produce an executable, this
25+
* file does not by itself cause the resulting executable to be covered by
26+
* the GNU General Public License. This exception does not however
27+
* invalidate any other reasons why the executable file might be covered by
28+
* the GNU General Public License.
29+
*/
30+
131
package cc.arduino.autocomplete;
232

333
import org.fife.ui.autocomplete.CompletionProvider;
@@ -10,9 +40,6 @@
1040
* CompletionProvider for Arduino/CPP Language. <br/>
1141
* Setup basic logic for completions using {@link LanguageAwareCompletionProvider}. <br/>
1242
* Filtering and decision will appear in the autocomplete dialog by implementations of: {@link CompletionProvider}.<br/>
13-
*
14-
* @author Ricardo JL Rufino ([email protected])
15-
* @date 28/04/2017
1643
*/
1744
public class SketchCompletionProvider extends LanguageAwareCompletionProvider {
1845

0 commit comments

Comments
 (0)