Skip to content

Commit 0fcbf47

Browse files
paodbmlopezFC
authored andcommitted
chore: update license headers
1 parent 9bcb34d commit 0fcbf47

13 files changed

+16
-33
lines changed

enhanced-grid-flow/src/main/java/com/vaadin/componentfactory/enhancedgrid/EnhancedColumn.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* Enhanced Grid
66
* %%
7-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/componentfactory/enhancedgrid/EnhancedGrid.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* enhanced-grid-flow
66
* %%
7-
* Copyright (C) 2020 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/componentfactory/enhancedtreegrid/EnhancedHierarchyColumnComponentRenderer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* Enhanced Grid
66
* %%
7-
* Copyright (C) 2020 - 2023 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/componentfactory/enhancedtreegrid/EnhancedTreeGrid.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* Enhanced Grid
66
* %%
7-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/flow/component/grid/ApplyFilterListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* Enhanced Grid
66
* %%
7-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/flow/component/grid/CancelEditConfirmDialog.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* Enhanced Grid
66
* %%
7-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/flow/component/grid/CustomAbstractGridMultiSelectionModel.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
/*-
44
* #%L
5-
* Custom Grid
5+
* Enhanced Grid
66
* %%
7-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/flow/component/grid/CustomAbstractGridSingleSelectionModel.java

+1-16
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,10 @@
1-
/*
2-
* Copyright 2000-2017 Vaadin Ltd.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
5-
* use this file except in compliance with the License. You may obtain a copy of
6-
* the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13-
* License for the specific language governing permissions and limitations under
14-
* the License.
15-
*/
161
package com.vaadin.flow.component.grid;
172

183
/*-
194
* #%L
205
* Enhanced Grid
216
* %%
22-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
238
* %%
249
* Licensed under the Apache License, Version 2.0 (the "License");
2510
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/flow/component/grid/Filter.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package com.vaadin.flow.component.grid;
22

3-
import com.vaadin.componentfactory.enhancedgrid.EnhancedGrid;
4-
53
/*-
64
* #%L
75
* Enhanced Grid
86
* %%
9-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
108
* %%
119
* Licensed under the Apache License, Version 2.0 (the "License");
1210
* you may not use this file except in compliance with the License.
@@ -22,6 +20,7 @@
2220
* #L%
2321
*/
2422

23+
import com.vaadin.componentfactory.enhancedgrid.EnhancedGrid;
2524
import com.vaadin.flow.function.SerializablePredicate;
2625

2726
/**

enhanced-grid-flow/src/main/java/com/vaadin/flow/component/grid/FilterClickedEvent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* Enhanced Grid
66
* %%
7-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/java/com/vaadin/flow/component/grid/FilterField.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package com.vaadin.flow.component.grid;
22

3-
import java.util.Optional;
4-
53
/*-
64
* #%L
75
* Enhanced Grid
86
* %%
9-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
108
* %%
119
* Licensed under the Apache License, Version 2.0 (the "License");
1210
* you may not use this file except in compliance with the License.
@@ -22,6 +20,7 @@
2220
* #L%
2321
*/
2422

23+
import java.util.Optional;
2524
import com.vaadin.flow.component.Component;
2625
import com.vaadin.flow.component.HasValue;
2726
import com.vaadin.flow.component.button.Button;

enhanced-grid-flow/src/main/java/com/vaadin/flow/component/grid/FilterFieldDto.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* #%L
55
* Enhanced Grid
66
* %%
7-
* Copyright (C) 2020 - 2021 Vaadin Ltd
7+
* Copyright (C) 2020 - 2024 Vaadin Ltd
88
* %%
99
* Licensed under the Apache License, Version 2.0 (the "License");
1010
* you may not use this file except in compliance with the License.

enhanced-grid-flow/src/main/resources/META-INF/resources/frontend/src/enhanced-grid-sorter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* #%L
33
* Enhanced Grid
44
* %%
5-
* Copyright (C) 2020 - 2021 Vaadin Ltd
5+
* Copyright (C) 2020 - 2024 Vaadin Ltd
66
* %%
77
* Licensed under the Apache License, Version 2.0 (the "License");
88
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)