Added a history list. (from 0.2 beta 1)

Added a permanent location setting. (from 0.2 beta 1)
Added SMS number setting. (from 0.2 beta 2)
Added Movie Showtimes search otpion.
Added Local Showtimes search option.
This commit is contained in:
Erik C. Thauvin 2005-02-24 15:07:46 +00:00
parent a2aa9fe4e1
commit 722ac10dcf
18 changed files with 1396 additions and 268 deletions

View file

@ -1,7 +1,7 @@
/*
* @(#)Util.java
*
* Copyright (c) 2004, Erik C. Thauvin (http://www.thauvin.net/erik/)
* Copyright (c) 2004-2005, Erik C. Thauvin (http://www.thauvin.net/erik/)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -46,19 +46,28 @@ import javax.microedition.lcdui.TextField;
/**
* The <code>Util</code> class implements methods specific to MIDP 1.x.
*
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
*
* @created October 8, 2004
* @since 1.0
* @since 1.0
*/
public class Util
{
/**
* Disables the default constructor.
*
* @throws UnsupportedOperationException if the constructor is called.
*/
private Util()
{
;
}
/**
* Returns a new exclusive choice group.
*
* @param title The title.
* @param choices The choices.
* @param title The title.
* @param choices The choices.
*
* @return The choice group.
*/
@ -71,7 +80,7 @@ public class Util
* Sets the current item.
*
* @param screen The screen.
* @param item The item.
* @param item The item.
*/
public static void setCurrentItem(Display screen, Item item)
{
@ -81,7 +90,7 @@ public class Util
/**
* Sets the initial input mode of the given text field.
*
* @param field The text field.
* @param field The text field.
* @param inputMode The input mode.
*/
public static void setInitialInputMode(TextField field, String inputMode)