blob: fd6c9140ee16af2ef4a331b28a961f517e15c8f2 [file] [log] [blame]
/*
* Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
/*
* $Id: AreaSelectedEvent.java,v 1.3 2004/11/14 07:33:12 tcfujii Exp $
*/
package components.components;
import jakarta.faces.event.ActionEvent;
/**
* <p>An {@link ActionEvent} indicating that the specified {@link AreaComponent}
* has just become the currently selected hotspot within the source
* {@link MapComponent}.</p>
*/
public class AreaSelectedEvent extends ActionEvent {
// ------------------------------------------------------------ Constructors
/**
* <p>Construct a new {@link AreaSelectedEvent} from the specified
* source map.</p>
*
* @param map The {@link MapComponent} originating this event
*/
public AreaSelectedEvent(MapComponent map) {
super(map);
}
// -------------------------------------------------------------- Properties
/**
* <p>Return the {@link MapComponent} of the map for which an area
* was selected.</p>
*/
public MapComponent getMapComponent() {
return ((MapComponent) getComponent());
}
}