This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
javax.swing
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Thu, 10 Oct 2002 14:13:08 +0200
- Subject: javax.swing
hello list
I commit the attached patch which adds three stubs for SWING.
Michael
--
Homepage: http://www.worldforge.org/
GPG-key: http://konqueror.dyndns.org/~mkoch/michael.gpg
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.1483
diff -u -r1.1483 ChangeLog
--- ChangeLog 10 Oct 2002 05:21:52 -0000 1.1483
+++ ChangeLog 10 Oct 2002 11:24:06 -0000
@@ -1,5 +1,14 @@
2002-10-10 Michael Koch <konqueror@gmx.de>
+ * javax/swing/AbstractListModel.java
+ (getListDataListeners): New stubbed method.
+ javax/swing/DefaultBoundedRangeModel.java
+ (getChangeListeners): New stubbed method.
+ javax/swing/DefaultSingleSelectionModel.java
+ (getChangeListeners): New stubbed method.
+
+2002-10-10 Michael Koch <konqueror@gmx.de>
+
* gcj/.cvsignore: New file to ignore files generated during build.
* include/.cvsignore: New file to ignore files generated during build.
Index: javax/swing/AbstractListModel.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/AbstractListModel.java,v
retrieving revision 1.1
diff -u -r1.1 AbstractListModel.java
--- javax/swing/AbstractListModel.java 9 Aug 2002 04:26:10 -0000 1.1
+++ javax/swing/AbstractListModel.java 10 Oct 2002 11:24:06 -0000
@@ -188,6 +188,15 @@
} // getListeners()
/**
+ * getListDataListeners
+ */
+ public ListDataListener[] getListDataListeners()
+ {
+ // FIXME: implement this
+ return null;
+ }
+
+ /**
* getElementAt
* @param index TODO
* @returns Object
Index: javax/swing/DefaultBoundedRangeModel.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/DefaultBoundedRangeModel.java,v
retrieving revision 1.1
diff -u -r1.1 DefaultBoundedRangeModel.java
--- javax/swing/DefaultBoundedRangeModel.java 9 Aug 2002 04:26:10 -0000 1.1
+++ javax/swing/DefaultBoundedRangeModel.java 10 Oct 2002 11:24:06 -0000
@@ -334,5 +334,14 @@
return listenerList.getListeners(c);
} // getListeners()
+ /**
+ * getChangeListeners
+ */
+ public ChangeListener[] getChangeListeners()
+ {
+ // FIXME: implement this
+ return null;
+ }
+
} // DefaultBoundedRangeModel
Index: javax/swing/DefaultSingleSelectionModel.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/DefaultSingleSelectionModel.java,v
retrieving revision 1.1
diff -u -r1.1 DefaultSingleSelectionModel.java
--- javax/swing/DefaultSingleSelectionModel.java 9 Aug 2002 04:26:10 -0000 1.1
+++ javax/swing/DefaultSingleSelectionModel.java 10 Oct 2002 11:24:06 -0000
@@ -175,5 +175,14 @@
return listenerList.getListeners(listenerClass);
} // getListeners()
+ /**
+ * getChangeListeners
+ */
+ public ChangeListener[] getChangeListeners()
+ {
+ // FIXME: implement this
+ return null;
+ }
+
} // DefaultSingleSelectionModel