| javax.swing.JPanel org.jfree.ui.InsetsChooserPanel
InsetsChooserPanel | public class InsetsChooserPanel extends JPanel (Code) | | A component for editing an instance of the Insets class.
author: Andrzej Porebski |
Constructor Summary | |
public | InsetsChooserPanel() Creates a chooser panel that allows manipulation of Insets values. | public | InsetsChooserPanel(Insets current) Creates a chooser panel that allows manipulation of Insets values. |
Method Summary | |
public Insets | getInsetsValue() Returns a new Insets instance to match the values entered
on the panel. | public void | removeNotify() Calls super removeNotify and removes all subcomponents from this panel. | protected int | stringToInt(String value) Converts a string representing an integer into its numerical value.
If this string does not represent a valid integer value, value of 0
is returned.
Parameters: value - the string. |
localizationResources | protected static ResourceBundle localizationResources(Code) | | The resourceBundle for the localization.
|
InsetsChooserPanel | public InsetsChooserPanel()(Code) | | Creates a chooser panel that allows manipulation of Insets values.
The values are initialized to the empty insets (0,0,0,0).
|
InsetsChooserPanel | public InsetsChooserPanel(Insets current)(Code) | | Creates a chooser panel that allows manipulation of Insets values.
The values are initialized to the current values of provided insets.
Parameters: current - the insets. |
getInsetsValue | public Insets getInsetsValue()(Code) | | Returns a new Insets instance to match the values entered
on the panel.
The insets. |
removeNotify | public void removeNotify()(Code) | | Calls super removeNotify and removes all subcomponents from this panel.
|
stringToInt | protected int stringToInt(String value)(Code) | | Converts a string representing an integer into its numerical value.
If this string does not represent a valid integer value, value of 0
is returned.
Parameters: value - the string. the value. |
|
|