Package org.jdesktop.swingx.event
Class DateSelectionEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.jdesktop.swingx.event.DateSelectionEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class DateSelectionEvent extends java.util.EventObject
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DateSelectionEvent.EventType
-
Constructor Summary
Constructors Constructor Description DateSelectionEvent(java.lang.Object source, DateSelectionEvent.EventType eventType, boolean adjusting)
Constructs a prototypical Event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DateSelectionEvent.EventType
getEventType()
Returns the type of this event.java.util.SortedSet<java.util.Date>
getSelection()
Returns the selection of the source dateSelectionModel.boolean
isAdjusting()
Returns a boolean indicating whether the event source is in adjusting state.
-
-
-
Constructor Detail
-
DateSelectionEvent
public DateSelectionEvent(java.lang.Object source, DateSelectionEvent.EventType eventType, boolean adjusting)
Constructs a prototypical Event.- Parameters:
source
- The object on which the Event initially occurred.eventType
- the type of the eventadjusting
- the adjusting property of the source- Throws:
java.lang.IllegalArgumentException
- if source is null.
-
-
Method Detail
-
getSelection
public java.util.SortedSet<java.util.Date> getSelection()
Returns the selection of the source dateSelectionModel.PENDING JW: that's the "live" selection, that is the source is re-queried on every call to this method. Bug or feature?
- Returns:
- the selection of the source.
-
getEventType
public final DateSelectionEvent.EventType getEventType()
Returns the type of this event.- Returns:
- the type of event.
-
isAdjusting
public boolean isAdjusting()
Returns a boolean indicating whether the event source is in adjusting state.- Returns:
- true if the event is fired while the model is in adjusting state.
-
-