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

📄 applicationcontainer.java

📁 一个netstore的完整代码,他使用了j2ee和webservice技术,并使用ojb o/r管理框架,很不错的
💻 JAVA
字号:
package netstore.framework;
import java.util.Locale;

/**
 * Used by the web container to store information that is needed and used
 * by all users.
 */
public class ApplicationContainer {
  
  /**
   * Retrieve the locale for the system.
   */
  public Locale getSystemLocale() {
    return systemLocale;
  }
  
  /**
   * Set the locale for the system.
   */
  public void setSystemLocale(Locale aLocale) {
    systemLocale = aLocale;
  }
  
  /**
   * Constructor
   */
  public ApplicationContainer() {
    super();
  }
  
  /**
   * The default locale for the application.
   */
  private Locale systemLocale = null;
}

⌨️ 快捷键说明

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