diff options
author | Aleksi Hietanen <aleksi@vaadin.com> | 2017-03-30 10:31:51 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-03-30 10:31:51 +0300 |
commit | b869d751811f36b3c74ea5c3e44a3e587e0d5b82 (patch) | |
tree | 78ad6ae4235789a18c34ccd94a97bc939531b3dd /client | |
parent | f9a9f2c4be0e38d936acab88cba45799fa83ff4a (diff) | |
download | vaadin-framework-b869d751811f36b3c74ea5c3e44a3e587e0d5b82.tar.gz vaadin-framework-b869d751811f36b3c74ea5c3e44a3e587e0d5b82.zip |
Implement LocalDateRenderer and LocalDateTimeRenderer (#8955)
Closes #8377
Diffstat (limited to 'client')
2 files changed, 76 insertions, 0 deletions
diff --git a/client/src/main/java/com/vaadin/client/connectors/grid/LocalDateRendererConnector.java b/client/src/main/java/com/vaadin/client/connectors/grid/LocalDateRendererConnector.java new file mode 100644 index 0000000000..f70a873954 --- /dev/null +++ b/client/src/main/java/com/vaadin/client/connectors/grid/LocalDateRendererConnector.java @@ -0,0 +1,38 @@ +/* + * Copyright 2000-2016 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.vaadin.client.connectors.grid; + +import com.vaadin.shared.ui.Connect; +import com.vaadin.shared.ui.grid.renderers.LocalDateRendererState; + +/** + * A connector for LocalDateRenderer. + * <p> + * The server-side Renderer operates on {@code LocalDate}s, but the data is + * serialized as a string, and displayed as-is on the client side. This is to be + * able to support the server's locale. + * + * @since 8.1 + * @author Vaadin Ltd + */ +@Connect(com.vaadin.ui.renderers.LocalDateRenderer.class) +public class LocalDateRendererConnector extends TextRendererConnector { + + @Override + public LocalDateRendererState getState() { + return (LocalDateRendererState) super.getState(); + } +} diff --git a/client/src/main/java/com/vaadin/client/connectors/grid/LocalDateTimeRendererConnector.java b/client/src/main/java/com/vaadin/client/connectors/grid/LocalDateTimeRendererConnector.java new file mode 100644 index 0000000000..8edebfef90 --- /dev/null +++ b/client/src/main/java/com/vaadin/client/connectors/grid/LocalDateTimeRendererConnector.java @@ -0,0 +1,38 @@ +/* + * Copyright 2000-2016 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.vaadin.client.connectors.grid; + +import com.vaadin.shared.ui.Connect; +import com.vaadin.shared.ui.grid.renderers.LocalDateTimeRendererState; + +/** + * A connector for LocalDateTimeRenderer. + * <p> + * The server-side Renderer operates on {@code LocalDateTime}s, but the data is + * serialized as a string, and displayed as-is on the client side. This is to be + * able to support the server's locale. + * + * @since 8.1 + * @author Vaadin Ltd + */ +@Connect(com.vaadin.ui.renderers.LocalDateTimeRenderer.class) +public class LocalDateTimeRendererConnector extends TextRendererConnector { + + @Override + public LocalDateTimeRendererState getState() { + return (LocalDateTimeRendererState) super.getState(); + } +} |