org.havi.ui.event.HScreenConfigurationEvent Maven / Gradle / Ivy
package org.havi.ui.event;
/*
* Copyright 2000-2003 by HAVi, Inc. Java is a trademark of Sun
* Microsystems, Inc. All rights reserved.
*/
/**
This event is sent to all registered {@link
org.havi.ui.event.HScreenConfigurationListener
HScreenConfigurationListeners} when an {@link
org.havi.ui.HScreenDevice HScreenDevice} modifies its
configuration.
The parameters to the constructors are as follows, in cases where
parameters are not used, then the constructor should use the default
values.
Default parameter values exposed in the constructors
Parameter Description Default value
Set method Get method
None.
Default parameter values not exposed in the constructors
Description Default value Set method
Get method
None.
@see org.havi.ui.event.HScreenConfigurationListener
@see org.havi.ui.HScreenDevice
*/
public class HScreenConfigurationEvent
extends java.util.EventObject
{
/**
* Construct an {@link org.havi.ui.event.HScreenConfigurationEvent
* HScreenConfigurationEvent}
*
* @param source the {@link org.havi.ui.HScreenDevice
* HScreenDevice} whose configuration changed
*/
public HScreenConfigurationEvent(Object source)
{
super(source);
}
}