blob: 8825cad1c3622dc081d0b6584832dc3fb1dfb21b [file] [log] [blame]
/*
* 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.tobago.event;
import org.apache.myfaces.tobago.util.FacesELUtils;
import javax.el.MethodExpression;
import javax.faces.component.StateHolder;
import javax.faces.context.FacesContext;
import javax.faces.event.AbortProcessingException;
public class MethodExpressionStateChangeListener implements SheetStateChangeListener, StateHolder {
private MethodExpression methodExpression;
private boolean isTransient = false;
public MethodExpressionStateChangeListener() {
}
public MethodExpressionStateChangeListener(final MethodExpression methodExpression) {
this.methodExpression = methodExpression;
}
@Override
public void processSheetStateChange(final SheetStateChangeEvent actionEvent) throws AbortProcessingException {
FacesELUtils.invokeMethodExpression(FacesContext.getCurrentInstance(), methodExpression, actionEvent);
}
@Override
public void restoreState(final FacesContext context, final Object state) {
methodExpression = (MethodExpression) state;
}
@Override
public Object saveState(final FacesContext context) {
return methodExpression;
}
@Override
public void setTransient(final boolean newTransientValue) {
isTransient = newTransientValue;
}
@Override
public boolean isTransient() {
return isTransient;
}
}