com.vaadin.client.ui.CalendarEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client Show documentation
Show all versions of vaadin-client Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright 2000-2014 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.ui;
import java.util.Date;
import com.vaadin.client.DateTimeService;
public class CalendarEntry {
private final String styleName;
private Date start;
private Date end;
private String title;
private String description;
private boolean notime;
@SuppressWarnings("deprecation")
public CalendarEntry(String styleName, Date start, Date end, String title,
String description, boolean notime) {
this.styleName = styleName;
if (notime) {
Date d = new Date(start.getTime());
d.setSeconds(0);
d.setMinutes(0);
this.start = d;
if (end != null) {
d = new Date(end.getTime());
d.setSeconds(0);
d.setMinutes(0);
this.end = d;
} else {
end = start;
}
} else {
this.start = start;
this.end = end;
}
this.title = title;
this.description = description;
this.notime = notime;
}
public CalendarEntry(String styleName, Date start, Date end, String title,
String description) {
this(styleName, start, end, title, description, false);
}
public String getStyleName() {
return styleName;
}
public Date getStart() {
return start;
}
public void setStart(Date start) {
this.start = start;
}
public Date getEnd() {
return end;
}
public void setEnd(Date end) {
this.end = end;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public boolean isNotime() {
return notime;
}
public void setNotime(boolean notime) {
this.notime = notime;
}
@SuppressWarnings("deprecation")
public String getStringForDate(Date d) {
// TODO format from DateTimeService
String s = "";
if (!notime) {
if (!DateTimeService.isSameDay(d, start)) {
s += (start.getYear() + 1900) + "." + (start.getMonth() + 1)
+ "." + start.getDate() + " ";
}
int i = start.getHours();
s += (i < 10 ? "0" : "") + i;
s += ":";
i = start.getMinutes();
s += (i < 10 ? "0" : "") + i;
if (!start.equals(end)) {
s += " - ";
if (!DateTimeService.isSameDay(start, end)) {
s += (end.getYear() + 1900) + "." + (end.getMonth() + 1)
+ "." + end.getDate() + " ";
}
i = end.getHours();
s += (i < 10 ? "0" : "") + i;
s += ":";
i = end.getMinutes();
s += (i < 10 ? "0" : "") + i;
}
s += " ";
}
if (title != null) {
s += title;
}
return s;
}
}