| java.lang.Object net.mygwt.ui.client.util.Util
Util | public class Util (Code) | | Various utility funcitons.
|
Method Summary | |
public static Component[] | createArray(List list) Creates a Component[] from a list of Component's. | public static void | fill(List list, Object[] elements) Populates a list with an array of elements. | public static boolean | isInteger(String value) Tests if the value is an integer. |
createArray | public static Component[] createArray(List list)(Code) | | Creates a Component[] from a list of Component's.
Parameters: list - the list the array |
fill | public static void fill(List list, Object[] elements)(Code) | | Populates a list with an array of elements.
Parameters: list - the list Parameters: elements - the elements to be added to the list |
isInteger | public static boolean isInteger(String value)(Code) | | Tests if the value is an integer.
Parameters: value - the value to test the integer state |
|
|