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

org.omnifaces.event.FacesEventWrapper Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
/*
 * Copyright 2020 OmniFaces
 *
 * 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
 *
 *     https://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.omnifaces.event;

import javax.faces.FacesWrapper;
import javax.faces.component.UIComponent;
import javax.faces.event.FacesEvent;
import javax.faces.event.FacesListener;
import javax.faces.event.PhaseId;

/**
 * Provides a simple implementation of {@link FacesEvent} that can be sub-classed by developers wishing to provide
 * specialized behavior to an existing {@link FacesEvent} instance without the need to implement/override all the
 * methods which do not necessarily need to be implemented. The default implementation of all methods expect of
 * {@link FacesEvent#getSource()} and {@link FacesEvent#getComponent()} is to call through to the wrapped
 * {@link FacesEvent}.
 *
 * @author Bauke Scholtz
 * @since 1.1
 */
public abstract class FacesEventWrapper extends FacesEvent implements FacesWrapper {

	// Constants ------------------------------------------------------------------------------------------------------

	private static final long serialVersionUID = 1L;

	// Properties -----------------------------------------------------------------------------------------------------

	private FacesEvent wrapped;

	// Constructors ---------------------------------------------------------------------------------------------------

	/**
	 * Construct a new faces event wrapper which wraps the given faces event for the given component.
	 * @param wrapped The faces event to be wrapped.
	 * @param component The component to broadcast this event for.
	 */
	public FacesEventWrapper(FacesEvent wrapped, UIComponent component) {
		super(component);
		this.wrapped = wrapped;
	}

	// Actions --------------------------------------------------------------------------------------------------------

	@Override
	public void queue() {
		wrapped.queue();
	}

	@Override
	public boolean isAppropriateListener(FacesListener listener) {
		return wrapped.isAppropriateListener(listener);
	}

	@Override
	public void processListener(FacesListener listener) {
		wrapped.processListener(listener);
	}

	// Getters/setters ------------------------------------------------------------------------------------------------

	@Override
	public PhaseId getPhaseId() {
		return wrapped.getPhaseId();
	}

	@Override
	public void setPhaseId(PhaseId phaseId) {
		wrapped.setPhaseId(phaseId);
	}

	@Override
	public FacesEvent getWrapped() {
		return wrapped;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy