parserdatabase.java

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

JAVA
37
字号
/* * @(#)ParserDataBase.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 com.sun.corba.se.spi.orb.ParserData ;import com.sun.corba.se.spi.orb.Operation ;public abstract class ParserDataBase implements ParserData {    private String  propertyName ;    private Operation operation ;	    private String fieldName ;    private Object defaultValue ;    private Object testValue ;    protected ParserDataBase( String  propertyName,	Operation operation, String fieldName, Object defaultValue,	Object testValue )    {	this.propertyName = propertyName  ;	this.operation = operation  ;		this.fieldName = fieldName  ;	this.defaultValue = defaultValue  ;	this.testValue = testValue  ;    }    public String  getPropertyName() { return propertyName ; }    public Operation getOperation() { return operation ; }    public String getFieldName() { return fieldName ; }    public Object getDefaultValue() { return defaultValue ; }    public Object getTestValue() { return testValue ; }}

⌨️ 快捷键说明

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