Package org.primefaces.component.calendar

Source Code of org.primefaces.component.calendar.Calendar

/*
* Generated, Do Not Modify
*/
/*
* Copyright 2010 Prime Technology.
*
* 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 org.primefaces.component.calendar;

import javax.faces.component.html.HtmlInputText;
import javax.faces.context.FacesContext;
import javax.faces.component.UINamingContainer;
import javax.el.ValueExpression;
import javax.el.MethodExpression;
import javax.faces.render.Renderer;
import java.io.IOException;
import javax.faces.component.UIComponent;
import javax.faces.event.AbortProcessingException;
import javax.faces.application.ResourceDependencies;
import javax.faces.application.ResourceDependency;
import java.util.List;
import java.util.ArrayList;
import org.primefaces.component.calendar.Calendar;
import org.primefaces.event.DateSelectEvent;
import org.primefaces.util.HTML;
import org.primefaces.util.ArrayUtils;
import org.primefaces.util.Constants;
import org.primefaces.util.ComponentUtils;
import java.util.Iterator;
import java.util.Map;
import java.util.HashMap;
import java.util.Date;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import javax.faces.event.AjaxBehaviorEvent;
import javax.faces.event.FacesEvent;
import javax.faces.event.PhaseId;

@ResourceDependencies({
  @ResourceDependency(library="primefaces", name="forms/forms.css"),
  @ResourceDependency(library="primefaces", name="jquery/ui/jquery-ui.css"),
  @ResourceDependency(library="primefaces", name="jquery/jquery.js"),
  @ResourceDependency(library="primefaces", name="jquery/ui/jquery-ui.js"),
  @ResourceDependency(library="primefaces", name="core/core.js"),
  @ResourceDependency(library="primefaces", name="calendar/calendar.js")
})
public class Calendar extends HtmlInputText implements org.primefaces.component.api.Widget {


  public static final String COMPONENT_TYPE = "org.primefaces.component.Calendar";
  public static final String COMPONENT_FAMILY = "org.primefaces.component";
  private static final String DEFAULT_RENDERER = "org.primefaces.component.CalendarRenderer";
  private static final String OPTIMIZED_PACKAGE = "org.primefaces.component.";

  protected enum PropertyKeys {

    widgetVar
    ,mindate
    ,maxdate
    ,pages
    ,mode
    ,pattern
    ,locale
    ,popupIcon
    ,popupIconOnly
    ,navigator
    ,timeZone
    ,readOnlyInputText
    ,showButtonPanel
    ,effect
    ,effectDuration
    ,showOn
    ,showWeek
    ,disabledWeekends
    ,showOtherMonths
    ,selectOtherMonths
    ,yearRange
    ,timeOnly
    ,stepHour
    ,stepMinute
    ,stepSecond
    ,minHour
    ,maxHour
    ,minMinute
    ,maxMinute
    ,minSecond
    ,maxSecond;

    String toString;

    PropertyKeys(String toString) {
      this.toString = toString;
    }

    PropertyKeys() {}

    public String toString() {
      return ((this.toString != null) ? this.toString : super.toString());
}
  }

  public Calendar() {
    setRendererType(DEFAULT_RENDERER);
  }

  public String getFamily() {
    return COMPONENT_FAMILY;
  }

  public java.lang.String getWidgetVar() {
    return (java.lang.String) getStateHelper().eval(PropertyKeys.widgetVar, null);
  }
  public void setWidgetVar(java.lang.String _widgetVar) {
    getStateHelper().put(PropertyKeys.widgetVar, _widgetVar);
    handleAttribute("widgetVar", _widgetVar);
  }

  public java.lang.Object getMindate() {
    return (java.lang.Object) getStateHelper().eval(PropertyKeys.mindate, null);
  }
  public void setMindate(java.lang.Object _mindate) {
    getStateHelper().put(PropertyKeys.mindate, _mindate);
    handleAttribute("mindate", _mindate);
  }

  public java.lang.Object getMaxdate() {
    return (java.lang.Object) getStateHelper().eval(PropertyKeys.maxdate, null);
  }
  public void setMaxdate(java.lang.Object _maxdate) {
    getStateHelper().put(PropertyKeys.maxdate, _maxdate);
    handleAttribute("maxdate", _maxdate);
  }

  public int getPages() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.pages, 1);
  }
  public void setPages(int _pages) {
    getStateHelper().put(PropertyKeys.pages, _pages);
    handleAttribute("pages", _pages);
  }

  public java.lang.String getMode() {
    return (java.lang.String) getStateHelper().eval(PropertyKeys.mode, "popup");
  }
  public void setMode(java.lang.String _mode) {
    getStateHelper().put(PropertyKeys.mode, _mode);
    handleAttribute("mode", _mode);
  }

  public java.lang.String getPattern() {
    return (java.lang.String) getStateHelper().eval(PropertyKeys.pattern, "MM/dd/yyyy");
  }
  public void setPattern(java.lang.String _pattern) {
    getStateHelper().put(PropertyKeys.pattern, _pattern);
    handleAttribute("pattern", _pattern);
  }

  public java.lang.Object getLocale() {
    return (java.lang.Object) getStateHelper().eval(PropertyKeys.locale, null);
  }
  public void setLocale(java.lang.Object _locale) {
    getStateHelper().put(PropertyKeys.locale, _locale);
    handleAttribute("locale", _locale);
  }

  public java.lang.String getPopupIcon() {
    return (java.lang.String) getStateHelper().eval(PropertyKeys.popupIcon, null);
  }
  public void setPopupIcon(java.lang.String _popupIcon) {
    getStateHelper().put(PropertyKeys.popupIcon, _popupIcon);
    handleAttribute("popupIcon", _popupIcon);
  }

  public boolean isPopupIconOnly() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.popupIconOnly, false);
  }
  public void setPopupIconOnly(boolean _popupIconOnly) {
    getStateHelper().put(PropertyKeys.popupIconOnly, _popupIconOnly);
    handleAttribute("popupIconOnly", _popupIconOnly);
  }

  public boolean isNavigator() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.navigator, false);
  }
  public void setNavigator(boolean _navigator) {
    getStateHelper().put(PropertyKeys.navigator, _navigator);
    handleAttribute("navigator", _navigator);
  }

  public java.lang.Object getTimeZone() {
    return (java.lang.Object) getStateHelper().eval(PropertyKeys.timeZone, null);
  }
  public void setTimeZone(java.lang.Object _timeZone) {
    getStateHelper().put(PropertyKeys.timeZone, _timeZone);
    handleAttribute("timeZone", _timeZone);
  }

  public boolean isReadOnlyInputText() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.readOnlyInputText, false);
  }
  public void setReadOnlyInputText(boolean _readOnlyInputText) {
    getStateHelper().put(PropertyKeys.readOnlyInputText, _readOnlyInputText);
    handleAttribute("readOnlyInputText", _readOnlyInputText);
  }

  public boolean isShowButtonPanel() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.showButtonPanel, false);
  }
  public void setShowButtonPanel(boolean _showButtonPanel) {
    getStateHelper().put(PropertyKeys.showButtonPanel, _showButtonPanel);
    handleAttribute("showButtonPanel", _showButtonPanel);
  }

  public java.lang.String getEffect() {
    return (java.lang.String) getStateHelper().eval(PropertyKeys.effect, null);
  }
  public void setEffect(java.lang.String _effect) {
    getStateHelper().put(PropertyKeys.effect, _effect);
    handleAttribute("effect", _effect);
  }

  public java.lang.String getEffectDuration() {
    return (java.lang.String) getStateHelper().eval(PropertyKeys.effectDuration, "normal");
  }
  public void setEffectDuration(java.lang.String _effectDuration) {
    getStateHelper().put(PropertyKeys.effectDuration, _effectDuration);
    handleAttribute("effectDuration", _effectDuration);
  }

  public java.lang.String getShowOn() {
    return (java.lang.String) getStateHelper().eval(PropertyKeys.showOn, "focus");
  }
  public void setShowOn(java.lang.String _showOn) {
    getStateHelper().put(PropertyKeys.showOn, _showOn);
    handleAttribute("showOn", _showOn);
  }

  public boolean isShowWeek() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.showWeek, false);
  }
  public void setShowWeek(boolean _showWeek) {
    getStateHelper().put(PropertyKeys.showWeek, _showWeek);
    handleAttribute("showWeek", _showWeek);
  }

  public boolean isDisabledWeekends() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.disabledWeekends, false);
  }
  public void setDisabledWeekends(boolean _disabledWeekends) {
    getStateHelper().put(PropertyKeys.disabledWeekends, _disabledWeekends);
    handleAttribute("disabledWeekends", _disabledWeekends);
  }

  public boolean isShowOtherMonths() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.showOtherMonths, false);
  }
  public void setShowOtherMonths(boolean _showOtherMonths) {
    getStateHelper().put(PropertyKeys.showOtherMonths, _showOtherMonths);
    handleAttribute("showOtherMonths", _showOtherMonths);
  }

  public boolean isSelectOtherMonths() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.selectOtherMonths, false);
  }
  public void setSelectOtherMonths(boolean _selectOtherMonths) {
    getStateHelper().put(PropertyKeys.selectOtherMonths, _selectOtherMonths);
    handleAttribute("selectOtherMonths", _selectOtherMonths);
  }

  public java.lang.String getYearRange() {
    return (java.lang.String) getStateHelper().eval(PropertyKeys.yearRange, null);
  }
  public void setYearRange(java.lang.String _yearRange) {
    getStateHelper().put(PropertyKeys.yearRange, _yearRange);
    handleAttribute("yearRange", _yearRange);
  }

  public boolean isTimeOnly() {
    return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.timeOnly, false);
  }
  public void setTimeOnly(boolean _timeOnly) {
    getStateHelper().put(PropertyKeys.timeOnly, _timeOnly);
    handleAttribute("timeOnly", _timeOnly);
  }

  public int getStepHour() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.stepHour, 1);
  }
  public void setStepHour(int _stepHour) {
    getStateHelper().put(PropertyKeys.stepHour, _stepHour);
    handleAttribute("stepHour", _stepHour);
  }

  public int getStepMinute() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.stepMinute, 1);
  }
  public void setStepMinute(int _stepMinute) {
    getStateHelper().put(PropertyKeys.stepMinute, _stepMinute);
    handleAttribute("stepMinute", _stepMinute);
  }

  public int getStepSecond() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.stepSecond, 1);
  }
  public void setStepSecond(int _stepSecond) {
    getStateHelper().put(PropertyKeys.stepSecond, _stepSecond);
    handleAttribute("stepSecond", _stepSecond);
  }

  public int getMinHour() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.minHour, 0);
  }
  public void setMinHour(int _minHour) {
    getStateHelper().put(PropertyKeys.minHour, _minHour);
    handleAttribute("minHour", _minHour);
  }

  public int getMaxHour() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.maxHour, 23);
  }
  public void setMaxHour(int _maxHour) {
    getStateHelper().put(PropertyKeys.maxHour, _maxHour);
    handleAttribute("maxHour", _maxHour);
  }

  public int getMinMinute() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.minMinute, 0);
  }
  public void setMinMinute(int _minMinute) {
    getStateHelper().put(PropertyKeys.minMinute, _minMinute);
    handleAttribute("minMinute", _minMinute);
  }

  public int getMaxMinute() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.maxMinute, 59);
  }
  public void setMaxMinute(int _maxMinute) {
    getStateHelper().put(PropertyKeys.maxMinute, _maxMinute);
    handleAttribute("maxMinute", _maxMinute);
  }

  public int getMinSecond() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.minSecond, 0);
  }
  public void setMinSecond(int _minSecond) {
    getStateHelper().put(PropertyKeys.minSecond, _minSecond);
    handleAttribute("minSecond", _minSecond);
  }

  public int getMaxSecond() {
    return (java.lang.Integer) getStateHelper().eval(PropertyKeys.maxSecond, 59);
  }
  public void setMaxSecond(int _maxSecond) {
    getStateHelper().put(PropertyKeys.maxSecond, _maxSecond);
    handleAttribute("maxSecond", _maxSecond);
  }


    public final static String INPUT_STYLE_CLASS = "ui-inputfield ui-widget ui-state-default ui-corner-all";

  public static String POPUP_ICON = "calendar/calendar_icon.png";

    private static final Collection<String> EVENT_NAMES = Collections.unmodifiableCollection(Arrays.asList("blur","change","valueChange","click","dblclick","focus","keydown","keypress","keyup","mousedown","mousemove","mouseout","mouseover","mouseup","select", "dateSelect"));

    private Map<String,AjaxBehaviorEvent> customEvents = new HashMap<String,AjaxBehaviorEvent>();

  private java.util.Locale calculatedLocale;
  private java.util.TimeZone appropriateTimeZone;
 
  public java.util.Locale calculateLocale(FacesContext facesContext) {
    if(calculatedLocale == null) {
      Object userLocale = getLocale();
      if(userLocale != null) {
        if(userLocale instanceof String) {
          calculatedLocale = ComponentUtils.toLocale((String) userLocale);
        }
        else if(userLocale instanceof java.util.Locale)
          calculatedLocale = (java.util.Locale) userLocale;
        else
          throw new IllegalArgumentException("Type:" + userLocale.getClass() + " is not a valid locale type for calendar:" + this.getClientId(facesContext));
      } else {
        calculatedLocale = facesContext.getViewRoot().getLocale();
      }
    }
   
    return calculatedLocale;
  }
 
  public java.util.TimeZone calculateTimeZone() {
    if(appropriateTimeZone == null) {
      Object usertimeZone = getTimeZone();
      if(usertimeZone != null) {
        if(usertimeZone instanceof String)
          appropriateTimeZone =  java.util.TimeZone.getTimeZone((String) usertimeZone);
        else if(usertimeZone instanceof java.util.TimeZone)
          appropriateTimeZone = (java.util.TimeZone) usertimeZone;
        else
          throw new IllegalArgumentException("TimeZone could be either String or java.util.TimeZone");
      } else {
        appropriateTimeZone = java.util.TimeZone.getDefault();
      }
    }
   
    return appropriateTimeZone;
  }
 
  public boolean isPopup() {
    return getMode().equalsIgnoreCase("popup");
  }

    public boolean hasTime() {
        String pattern = getPattern();

        return (pattern != null && pattern.indexOf(":") != -1);
    }

    @Override
    public Collection<String> getEventNames() {
        return EVENT_NAMES;
    }

    @Override
    public void queueEvent(FacesEvent event) {
        FacesContext context = FacesContext.getCurrentInstance();
        String eventName = context.getExternalContext().getRequestParameterMap().get(Constants.PARTIAL_BEHAVIOR_EVENT_PARAM);
       
        if(eventName != null && eventName.equals("dateSelect") && event instanceof AjaxBehaviorEvent) {
            customEvents.put("dateSelect", (AjaxBehaviorEvent) event);
        } else {
            super.queueEvent(event);
        }
    }

    @Override
    public void validate(FacesContext context) {
        super.validate(context);
      
        if(isValid()) {
            for(Iterator<String> customEventIter = customEvents.keySet().iterator(); customEventIter.hasNext();) {
                AjaxBehaviorEvent behaviorEvent = customEvents.get(customEventIter.next());
                DateSelectEvent dateSelectEvent = new DateSelectEvent(this, behaviorEvent.getBehavior(), (Date) getValue());

                if(behaviorEvent.getPhaseId().equals(PhaseId.APPLY_REQUEST_VALUES)) {
                    dateSelectEvent.setPhaseId(PhaseId.PROCESS_VALIDATIONS);
                }

                super.queueEvent(dateSelectEvent);
            }
        }
    }

  protected FacesContext getFacesContext() {
    return FacesContext.getCurrentInstance();
  }
  public String resolveWidgetVar() {
    FacesContext context = FacesContext.getCurrentInstance();
    String userWidgetVar = (String) getAttributes().get("widgetVar");

    if(userWidgetVar != null)
      return userWidgetVar;
     else
      return "widget_" + getClientId(context).replaceAll("-|" + UINamingContainer.getSeparatorChar(context), "_");
  }

  public void handleAttribute(String name, Object value) {
    List<String> setAttributes = (List<String>) this.getAttributes().get("javax.faces.component.UIComponentBase.attributesThatAreSet");
    if(setAttributes == null) {
      String cname = this.getClass().getName();
      if(cname != null && cname.startsWith(OPTIMIZED_PACKAGE)) {
        setAttributes = new ArrayList<String>(6);
        this.getAttributes().put("javax.faces.component.UIComponentBase.attributesThatAreSet", setAttributes);
      }
    }
    if(setAttributes != null) {
      if(value == null) {
        ValueExpression ve = getValueExpression(name);
        if(ve == null) {
          setAttributes.remove(name);
        } else if(!setAttributes.contains(name)) {
          setAttributes.add(name);
        }
      }
    }
  }
}
TOP

Related Classes of org.primefaces.component.calendar.Calendar

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.