Commit 9461e24c by Michael Koch Committed by Michael Koch

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.

From-SVN: r58011
parent 5febdf0d
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.
......
......@@ -188,6 +188,15 @@ public abstract class AbstractListModel implements ListModel, Serializable {
} // getListeners()
/**
* getListDataListeners
*/
public ListDataListener[] getListDataListeners()
{
// FIXME: implement this
return null;
}
/**
* getElementAt
* @param index TODO
* @returns Object
......
......@@ -334,5 +334,14 @@ public class DefaultBoundedRangeModel implements BoundedRangeModel, Serializable
return listenerList.getListeners(c);
} // getListeners()
/**
* getChangeListeners
*/
public ChangeListener[] getChangeListeners()
{
// FIXME: implement this
return null;
}
} // DefaultBoundedRangeModel
......@@ -175,5 +175,14 @@ public class DefaultSingleSelectionModel implements
return listenerList.getListeners(listenerClass);
} // getListeners()
/**
* getChangeListeners
*/
public ChangeListener[] getChangeListeners()
{
// FIXME: implement this
return null;
}
} // DefaultSingleSelectionModel
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment