BasicListUI.java, [...]: Added missing methods.
2003-06-25 Michael Koch <konqueror@gmx.de> * javax/swing/plaf/basic/BasicListUI.java, javax/swing/plaf/basic/BasicOptionPaneUI.java: Added missing methods. From-SVN: r68456
This commit is contained in:
parent
b990116248
commit
a7c0a4422b
@ -1,3 +1,9 @@
|
||||
2003-06-25 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* javax/swing/plaf/basic/BasicListUI.java,
|
||||
javax/swing/plaf/basic/BasicOptionPaneUI.java:
|
||||
Added missing methods.
|
||||
|
||||
2003-06-25 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* javax/swing/event/AncestorEvent.java
|
||||
|
@ -159,12 +159,19 @@ public class BasicListUI extends ListUI
|
||||
a.y += dim.height + gap_between_cells;
|
||||
}
|
||||
}
|
||||
|
||||
public int locationToIndex(JList list, Point location)
|
||||
{
|
||||
throw new Error ("Not implemented");
|
||||
}
|
||||
|
||||
public Point indexToLocation(JList list, int index)
|
||||
{
|
||||
throw new Error ("Not implemented");
|
||||
}
|
||||
|
||||
public Rectangle getCellBounds(JList list, int index1, int index2)
|
||||
{
|
||||
throw new Error ("Not implemented");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -139,4 +139,14 @@ public class BasicOptionPaneUI extends OptionPaneUI
|
||||
|
||||
return d2;
|
||||
}
|
||||
|
||||
public void selectInitialValue(JOptionPane op)
|
||||
{
|
||||
throw new Error ("Not implemented");
|
||||
}
|
||||
|
||||
public boolean containsCustomComponents(JOptionPane op)
|
||||
{
|
||||
throw new Error ("Not implemented");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user