parseraction.java

来自「JAVA 所有包」· Java 代码 · 共 31 行

JAVA
31
字号
/* * @(#)ParserAction.java	1.6 05/11/17 *  * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.impl.orb ;import java.util.Properties ;public interface ParserAction {    /** Return the property name or prefix for which this action     * is applied.     */    String getPropertyName() ;    /** Return whether this action is for an exact match or a prefix     * match (true).     */    boolean isPrefix() ;    /** Return the field name in an object that is set with the result     */    String getFieldName() ;    /** Apply this action to props and return the result.    */    Object apply( Properties props ) ;}

⌨️ 快捷键说明

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