normalparseraction.java
来自「JAVA 所有包」· Java 代码 · 共 35 行
JAVA
35 行
/* * @(#)NormalParserAction.java 1.8 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 ;import com.sun.corba.se.spi.orb.Operation ;public class NormalParserAction extends ParserActionBase { public NormalParserAction( String propertyName, Operation operation, String fieldName ) { super( propertyName, false, operation, fieldName ) ; } /** Create a String[] of all suffixes of property names that * match the propertyName prefix, pass this to op, and return the * result. */ public Object apply( Properties props ) { Object value = props.getProperty( getPropertyName() ) ; if (value != null) return getOperation().operate( value ) ; else return null ; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?