![JAR search and dependency download from the Maven repository](/logo.png)
com.opensymphony.webwork.views.velocity.components.DatePickerDirective Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webwork Show documentation
Show all versions of webwork Show documentation
WebWork is a Java web-application development framework.
It is built specifically with developer productivity and
code simplicity in mind, providing robust support for building
reusable UI templates, such as form controls, UI themes,
internationalization, dynamic form parameter mapping to JavaBeans,
robust client and server side validation, and much more.
The newest version!
package com.opensymphony.webwork.views.velocity.components;
import com.opensymphony.webwork.components.Component;
import com.opensymphony.webwork.components.DatePicker;
import com.opensymphony.xwork.util.OgnlValueStack;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* @see DatePicker
*/
public class DatePickerDirective extends TextFieldDirective {
protected Component getBean(OgnlValueStack stack, HttpServletRequest req, HttpServletResponse res) {
return new DatePicker(stack, req, res);
}
public String getBeanName() {
return "datepicker";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy