📄 parserdatafactory.java
字号:
/* * @(#)ParserDataFactory.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.spi.orb ;import com.sun.corba.se.impl.orb.NormalParserData ;import com.sun.corba.se.impl.orb.PrefixParserData ;public class ParserDataFactory { public static ParserData make( String propertyName, Operation operation, String fieldName, Object defaultValue, Object testValue, String testData ) { return new NormalParserData( propertyName, operation, fieldName, defaultValue, testValue, testData ) ; } public static ParserData make( String propertyName, Operation operation, String fieldName, Object defaultValue, Object testValue, StringPair[] testData, Class componentType ) { return new PrefixParserData( propertyName, operation, fieldName, defaultValue, testValue, testData, componentType ) ; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -