Package org.richfaces.component

Source Code of org.richfaces.component.UIDropSupport

/**
* License Agreement.
*
*  JBoss RichFaces - Ajax4jsf Component Library
*
* Copyright (C) 2007  Exadel, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
*/

package org.richfaces.component;

import javax.faces.el.MethodBinding;
import javax.faces.event.AbortProcessingException;
import javax.faces.event.ActionEvent;
import javax.faces.event.FacesEvent;
import javax.faces.event.PhaseId;

import org.ajax4jsf.component.AjaxActionComponent;
import org.ajax4jsf.event.AjaxEvent;
import org.richfaces.event.DropEvent;
import org.richfaces.event.DropListener;

/**
* JSF component class
*
*/
public abstract class UIDropSupport extends AjaxActionComponent implements Dropzone {

  private static final String COMPONENT_TYPE = "org.richfaces.DropSupport";

  private static final String COMPONENT_FAMILY = "org.richfaces.DropSupport";

  public void addDropListener(DropListener listener) {
    addFacesListener(listener);
  }

  public void removeDropListener(DropListener listener) {
    removeFacesListener(listener);
  }

  public DropListener[] getDropListeners() {
    return (DropListener[]) getFacesListeners(DropListener.class);
  }

  public void broadcast(FacesEvent event) throws AbortProcessingException {
    super.broadcast(event);
    if (event instanceof DropEvent) {
      if (((DropEvent) event).isValid()) {
        MethodBinding binding = getDropListener();
        if (binding != null) {
          binding.invoke(getFacesContext(), new Object[] {event});
        }

        new AjaxEvent(this).queue();
        new ActionEvent(this).queue();
      }
    }
  }

  public void queueEvent(FacesEvent event) {
    if (event instanceof DropEvent) {
      if (isImmediate()) {
        event.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
      } else {
        event.setPhaseId(PhaseId.INVOKE_APPLICATION);
      }
    }
    super.queueEvent(event);
  }
}
TOP

Related Classes of org.richfaces.component.UIDropSupport

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.