File tree Expand file tree Collapse file tree 8 files changed +94
-2
lines changed
vaadin-grid-filter/src/main/java/software/xdev/vaadin/gridfilter Expand file tree Collapse file tree 8 files changed +94
-2
lines changed Original file line number Diff line number Diff line change @@ -257,7 +257,8 @@ public GridFilter<T> addTypeValueComponent(final TypeValueComponentProvider<?> t
257
257
return this .invalidateCache ();
258
258
}
259
259
260
- public GridFilter <T > addTypeValueComponents (final Collection <TypeValueComponentProvider <?>> typeValueComponentProviders )
260
+ public GridFilter <T > addTypeValueComponents (
261
+ final Collection <TypeValueComponentProvider <?>> typeValueComponentProviders )
261
262
{
262
263
this .availableTypeValueComponentProviders .addAll (typeValueComponentProviders );
263
264
return this .invalidateCache ();
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright © 2024 XDEV Software (https://xdev.software)
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of 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,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
package software .xdev .vaadin .gridfilter ;
2
17
3
18
import static java .util .Map .entry ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright © 2024 XDEV Software (https://xdev.software)
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of 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,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
package software .xdev .vaadin .gridfilter ;
2
17
3
18
public final class GridFilterStyles
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright © 2024 XDEV Software (https://xdev.software)
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of 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,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
package software .xdev .vaadin .gridfilter .filtercomponents ;
2
17
3
18
import software .xdev .vaadin .gridfilter .GridFilterStyles ;
Original file line number Diff line number Diff line change @@ -147,7 +147,8 @@ public String serialize()
147
147
148
148
return this .serializationPrefixSupplier .get ()
149
149
+ FilterBlockComponentSerialization .LIST_START
150
- + FilterBlockComponentSerialization .serializeFilterComponents (this .filterContainerComponent .getFilterComponents ())
150
+ + FilterBlockComponentSerialization .serializeFilterComponents (
151
+ this .filterContainerComponent .getFilterComponents ())
151
152
+ FilterBlockComponentSerialization .LIST_END ;
152
153
}
153
154
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright © 2024 XDEV Software (https://xdev.software)
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of 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,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
package software .xdev .vaadin .gridfilter .filtercomponents .block ;
2
17
3
18
import software .xdev .vaadin .gridfilter .GridFilterStyles ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright © 2024 XDEV Software (https://xdev.software)
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of 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,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
package software .xdev .vaadin .gridfilter .filtercomponents .block ;
2
17
3
18
import java .util .List ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright © 2024 XDEV Software (https://xdev.software)
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of 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,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
1
16
package software .xdev .vaadin .gridfilter .filtercomponents .condition ;
2
17
3
18
import software .xdev .vaadin .gridfilter .GridFilterStyles ;
You can’t perform that action at this time.
0 commit comments