summaryrefslogtreecommitdiff
path: root/libs/FLib/JCalendar/org/freixas/jcalendar/DateEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'libs/FLib/JCalendar/org/freixas/jcalendar/DateEvent.java')
-rw-r--r--libs/FLib/JCalendar/org/freixas/jcalendar/DateEvent.java76
1 files changed, 38 insertions, 38 deletions
diff --git a/libs/FLib/JCalendar/org/freixas/jcalendar/DateEvent.java b/libs/FLib/JCalendar/org/freixas/jcalendar/DateEvent.java
index dfd4f9f..9058dc4 100644
--- a/libs/FLib/JCalendar/org/freixas/jcalendar/DateEvent.java
+++ b/libs/FLib/JCalendar/org/freixas/jcalendar/DateEvent.java
@@ -24,63 +24,63 @@ import java.util.Calendar;
// All Rights Reserved.
public class DateEvent
- extends EventObject
+ extends EventObject
{
//**********************************************************************
// Private Members
//**********************************************************************
-private Calendar selectedDate;
+ private Calendar selectedDate;
//**********************************************************************
// Constructors
//**********************************************************************
-/**
- * Create a date event.
- *
- * @param source The object on which the event occurred.
- * @param selectedDate The selected date.
- */
-
-public
-DateEvent(
- Object source,
- Calendar selectedDate)
-{
- super(source);
- this.selectedDate = selectedDate;
-}
+ /**
+ * Create a date event.
+ *
+ * @param source The object on which the event occurred.
+ * @param selectedDate The selected date.
+ */
+
+ public
+ DateEvent(
+ Object source,
+ Calendar selectedDate)
+ {
+ super(source);
+ this.selectedDate = selectedDate;
+ }
//**********************************************************************
// Public
//**********************************************************************
-/**
- * Return the selected date.
- *
- * @return The selected date.
- */
+ /**
+ * Return the selected date.
+ *
+ * @return The selected date.
+ */
-public Calendar
-getSelectedDate()
-{
- return selectedDate;
-}
+ public Calendar
+ getSelectedDate()
+ {
+ return selectedDate;
+ }
//The default equals and hashCode methods are acceptable.
-/**
- * {@inheritDoc}
- */
-
-public String
-toString()
-{
- return
- super.toString() + ",selectedDate=" +
- selectedDate.getTime().toString();
-}
+ /**
+ * {@inheritDoc}
+ */
+
+ public String
+ toString()
+ {
+ return
+ super.toString() + ",selectedDate=" +
+ selectedDate.getTime().toString();
+ }
}