example1/Constants.java
package example1;
public interface Constants {
// MI Application Name ** is also used by the MDK developer plug-in to define the correct archive name
String MI_APPLICATION_NAME = "MDK_configExampleAWT";
// "Root" package name of example
String MI_PACKAGENAME = "example1";
// Base package name, that is used to define targets.
String TP_PAGEBASE = MI_PACKAGENAME + ".page.";
// GUI constants for navigation
int ROWS_PER_LONGPAGE = 9;
String HND_FIRSTPAGE = "gotoFirstPage";
String HND_PREVPAGE = "gotoPrevPage";
String HND_NEXTPAGE = "gotoNextPage";
String HND_LASTPAGE = "gotoLastPage";
String HND_GETPAGE = "getDesiredPage";
String TP_CONLONGLIST = "NoDetailList";
}