This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]