All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.future.earth.gwt.client.date.picker.NoneContraintAndEntryRenderer Maven / Gradle / Ivy

There is a newer version: 3.3
Show newest version
package eu.future.earth.gwt.client.date.picker;

import java.util.Date;

import com.google.gwt.user.client.ui.Widget;

public class NoneContraintAndEntryRenderer implements DatePickerRenderer {

	public boolean isEnabled(Date event, DatePickerMonthPanelDayPanel parent) {
		return true;
	}

	public Widget getBottumWidget(Date newDate) {
		return null;
	}

	public String getExtraStyle(Date newDate) {
		return null;
	}

	public String getTitle(Date newDate) {
		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy