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

📄 optionhandler.java

📁 log4j2me 是一个在j2me上使用的log4j风格的源码
💻 JAVA
字号:

package org.apache.log4j.spi;

/**
   A string based interface to configure package components.

   @author Ceki Gülcü, Witmate
 */
// Modifiers:	Witmate [Nov,2004: Modified for log4j2me]

public interface OptionHandler {

  /**
     Activate the options that were previously set with calls to option
     setters.

     <p>This allows to defer activiation of the options until all
     options have been set. This is required for components which have
     related options that remain ambigous until all are set.

   */
  public
  void activateOptions();
  
  public
  String[] getOptionStrings();
  
  public
  void setOption(String key, String value);
}

⌨️ 快捷键说明

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