⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 installstate.java

📁 有关j2me的很好的例子可以研究一下
💻 JAVA
字号:
/** * * @(#)InstallState.java	1.2 01/08/16 * * Copyright 2001 by Sun Microsystems, Inc., * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. * All rights reserved. */package com.sun.midp.midletsuite;/** * Holds the state of an installation, so it can restarted after it has * been stopped. */public interface InstallState {    /**     * Get the last recoverable exception that stopped the install.     * Non-recoverable exceptions are thrown and not saved in the state.     *     * @return last exception that stopped the install     */    public InvalidJadException getLastException();    /**     * Get the unique name that the installed suite was stored with.     *     * @return storage name that can be used to load the suite     */    public String getStorageName();    /**     * Set the username to be used for HTTP authentication.     *     * @param username 8 bit username, cannot contain a ":"     */    public void setUsername(String username);    /**     * Set the password to be used for HTTP authentication.     *     * @param password 8 bit password     */    public void setPassword(String password);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -