![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.myfaces.custom.schedule.UISchedule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tomahawk Show documentation
Show all versions of tomahawk Show documentation
JSF components and utilities that can be used with any JSF implementation.
This library is compatible with both JSF1.1 and JSF1.2; however for JSF1.2 users there
is an alternative build of Tomahawk available that takes advantage of JSF1.2 features to
offer some additional benefits.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.myfaces.custom.schedule;
import java.io.Serializable;
import java.util.Date;
import java.util.Iterator;
import javax.faces.component.ActionSource;
import javax.faces.context.FacesContext;
import javax.faces.el.MethodBinding;
import javax.faces.event.AbortProcessingException;
import javax.faces.event.ActionEvent;
import javax.faces.event.ActionListener;
import javax.faces.event.FacesEvent;
import javax.faces.event.PhaseId;
import org.apache.myfaces.custom.schedule.model.ScheduleDay;
import org.apache.myfaces.custom.schedule.model.ScheduleEntry;
/**
* This class contains all 'interactive' stuff for the Schedule component, meaning
* actions and actionListeners.
*
* @JSFComponent
*
* @author Jurgen Lust
* @version $Revision$
*/
public class UISchedule extends org.apache.myfaces.custom.schedule.UIScheduleBase implements
Serializable, ActionSource
{
public static final String COMPONENT_TYPE = "org.apache.myfaces.UISchedule";
private class ScheduleActionListener implements ActionListener
{
//~ Methods ------------------------------------------------------------
/**
* @see javax.faces.event.ActionListener#processAction(javax.faces.event.ActionEvent)
*/
public void processAction(ActionEvent event)
throws AbortProcessingException
{
UISchedule schedule = (UISchedule) event.getComponent();
ScheduleEntry entry = schedule.getSubmittedEntry();
schedule.getModel().setSelectedEntry(entry);
schedule.setSubmittedEntry(null);
}
}
private static final long serialVersionUID = -8333458172939036755L;
private MethodBinding _action;
private MethodBinding _actionListener;
private ScheduleActionListener _scheduleListener;
private ScheduleEntry _submittedEntry;
private Date _lastClickedDateAndTime = null;
private MethodBinding _mouseListener = null;
public UISchedule()
{
super();
_scheduleListener = new ScheduleActionListener();
}
public void addActionListener(ActionListener listener)
{
addFacesListener(listener);
}
/**
* @see javax.faces.component.UIComponent#broadcast(javax.faces.event.FacesEvent)
*/
public void broadcast(FacesEvent event) throws AbortProcessingException
{
FacesContext context = getFacesContext();
//invoke the mouselistener first
if (event instanceof ScheduleMouseEvent)
{
ScheduleMouseEvent mouseEvent = (ScheduleMouseEvent) event;
MethodBinding mouseListener = getMouseListener();
if (mouseListener != null)
{
mouseListener.invoke(context,
new Object[] { mouseEvent });
}
}
//then invoke private ScheduleActionListener for set
//the selected entry (if exists), so other
//listeners can retrieve it from getSelectedEntry.
if (event.isAppropriateListener(_scheduleListener))
{
event.processListener(_scheduleListener);
}
//then invoke any other listeners
super.broadcast(event);
if (event instanceof ActionEvent)
{
//Call registered actionListener if applies
MethodBinding actionListener = getActionListener();
if (actionListener != null)
{
actionListener.invoke(context, new Object[] { event });
}
//Since UISchedule is an ActionSource component,
//we should call to the application actionListener
//when an ActionEvent happens.
ActionListener defaultActionListener = context.getApplication()
.getActionListener();
if (defaultActionListener != null)
{
defaultActionListener.processAction((ActionEvent) event);
}
}
}
/**
* Find the entry with the given id
*
* @param id the id
*
* @return the entry
*/
protected ScheduleEntry findEntry(String id)
{
if (id == null)
{
return null;
}
for (Iterator dayIterator = getModel().iterator(); dayIterator
.hasNext();)
{
ScheduleDay day = (ScheduleDay) dayIterator.next();
for (Iterator iter = day.iterator(); iter.hasNext();)
{
ScheduleEntry entry = (ScheduleEntry) iter.next();
if (id.equals(entry.getId()))
{
return entry;
}
}
}
return null;
}
/**
* @JSFProperty
* returnSignature="java.lang.String"
*/
public MethodBinding getAction()
{
return _action;
}
/**
* @JSFProperty
* returnSignature="void"
* methodSignature="javax.faces.event.ActionEvent"
*/
public MethodBinding getActionListener()
{
return _actionListener;
}
public ActionListener[] getActionListeners()
{
return (ActionListener[]) getFacesListeners(ActionListener.class);
}
/**
* The last date and time of day that was clicked. This is set when
* submitOnClick is true, and the schedule is clicked by the user.
*
* @JSFProperty
* tagExcluded = "true"
* @return the last clicked date and time
*/
public Date getLastClickedDateAndTime()
{
return _lastClickedDateAndTime;
}
/**
* @JSFProperty
* returnSignature="void"
* methodSignature="org.apache.myfaces.custom.schedule.ScheduleMouseEvent"
* stateHolder="true"
*
* @return the method binding to the mouse listener method
*/
public MethodBinding getMouseListener()
{
return _mouseListener;
}
/**
* @return the submittedEntry
*/
public ScheduleEntry getSubmittedEntry()
{
return _submittedEntry;
}
/**
* @see javax.faces.component.UIComponent#queueEvent(javax.faces.event.FacesEvent)
*/
public void queueEvent(FacesEvent event)
{
if (event instanceof ActionEvent || event instanceof ScheduleMouseEvent)
{
if (isImmediate())
{
event.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
}
else
{
event.setPhaseId(PhaseId.INVOKE_APPLICATION);
}
}
super.queueEvent(event);
}
public void removeActionListener(ActionListener listener)
{
removeFacesListener(listener);
}
/**
* This method is invoked at the beginning of the restore view phase,
* resetting all mouse event variables that were left from the previous
* request
*/
protected void resetMouseEvents()
{
this._lastClickedDateAndTime = null;
}
/**
* @see org.apache.myfaces.custom.schedule.UIScheduleBase#restoreState(javax.faces.context.FacesContext, java.lang.Object)
*/
public void restoreState(FacesContext context, Object state)
{
Object[] values = (Object[]) state;
super.restoreState(context, values[0]);
_lastClickedDateAndTime = (Date) values[1];
_actionListener = (MethodBinding) restoreAttachedState(context,
values[2]);
_action = (MethodBinding) restoreAttachedState(context, values[3]);
_mouseListener = (MethodBinding) restoreAttachedState(context, values[4]);
}
/**
* @see org.apache.myfaces.custom.schedule.UIScheduleBase#saveState(javax.faces.context.FacesContext)
*/
public Object saveState(FacesContext context)
{
Object[] values = new Object[5];
values[0] = super.saveState(context);
values[1] = _lastClickedDateAndTime;
values[2] = saveAttachedState(context, _actionListener);
values[3] = saveAttachedState(context, _action);
values[4] = saveAttachedState(context, _mouseListener);
return values;
}
public void setAction(MethodBinding action)
{
this._action = action;
}
public void setActionListener(MethodBinding actionListener)
{
this._actionListener = actionListener;
}
/**
* The last date and time of day that was clicked. This is set when
* submitOnClick is true, and the schedule is clicked by the user.
*
* @return the last clicked date and time
*/
protected void setLastClickedDateAndTime(Date lastClickedDateAndTime)
{
this._lastClickedDateAndTime = lastClickedDateAndTime;
}
/**
* @param listener the method binding to the mouse listener method
*/
public void setMouseListener(MethodBinding listener)
{
_mouseListener = listener;
}
/**
* @param submittedEntry the submittedEntry to set
*/
protected void setSubmittedEntry(ScheduleEntry submittedEntry)
{
this._submittedEntry = submittedEntry;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy