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

net.sf.wcfart.wcf.selection.SelectionChangeEvent Maven / Gradle / Ivy

The newest version!
/*
 * ====================================================================
 * This software is subject to the terms of the Common Public License
 * Agreement, available at the following URL:
 *   http://www.opensource.org/licenses/cpl.html .
 * Copyright (C) 2003-2004 TONBELLER AG.
 * All Rights Reserved.
 * You must accept the terms of that agreement to use this software.
 * ====================================================================
 *
 * 
 */
package net.sf.wcfart.wcf.selection;

import java.util.EventObject;

import net.sf.wcfart.wcf.controller.RequestContext;
public class SelectionChangeEvent extends EventObject {
	
	private static final long serialVersionUID = 1L;
	
  RequestContext context;
  public SelectionChangeEvent(RequestContext context, SelectionModel source) {
    super(source);
    this.context = context;
  }
  
  public SelectionModel getSelectionModel() {
    return (SelectionModel)getSource();
  }

  public RequestContext getContext() {
    return context;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy