optionhandler.java

来自「log4j2me 是一个在j2me上使用的log4j风格的源码」· Java 代码 · 共 31 行

JAVA
31
字号

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 + =
减小字号Ctrl + -
显示快捷键?