repositoryidfactory.java

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

JAVA
86
字号
/* * @(#)RepositoryIdFactory.java	1.7 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.orbutil;import com.sun.corba.se.spi.orb.ORBVersion;import com.sun.corba.se.spi.orb.ORB;public abstract class RepositoryIdFactory{    private static final RepIdDelegator_1_3 legacyDelegator        = new RepIdDelegator_1_3();    private static final RepIdDelegator_1_3_1 ladybirdDelegator        = new RepIdDelegator_1_3_1();    private static final RepIdDelegator currentDelegator        = new RepIdDelegator();    /**     * Returns the latest version RepositoryIdStrings instance     */    public static RepositoryIdStrings getRepIdStringsFactory()    {        return currentDelegator;    }    /**     * Checks the version of the ORB and returns the appropriate     * RepositoryIdStrings instance.     */    public static RepositoryIdStrings getRepIdStringsFactory(ORB orb)    {        if (orb != null) {            switch (orb.getORBVersion().getORBType()) {                case ORBVersion.NEWER:                case ORBVersion.FOREIGN:                case ORBVersion.JDK1_3_1_01:                    return currentDelegator;                case ORBVersion.OLD:                    return legacyDelegator;                case ORBVersion.NEW:                    return ladybirdDelegator;                default:                    return currentDelegator;            }        } else            return currentDelegator;    }    /**     * Returns the latest version RepositoryIdUtility instance     */    public static RepositoryIdUtility getRepIdUtility()    {        return currentDelegator;    }    /**     * Checks the version of the ORB and returns the appropriate     * RepositoryIdUtility instance.     */    public static RepositoryIdUtility getRepIdUtility(ORB orb)    {        if (orb != null) {            switch (orb.getORBVersion().getORBType()) {                case ORBVersion.NEWER:                case ORBVersion.FOREIGN:                case ORBVersion.JDK1_3_1_01:                    return currentDelegator;                case ORBVersion.OLD:                    return legacyDelegator;                case ORBVersion.NEW:                    return ladybirdDelegator;                default:                    return currentDelegator;            }        } else            return currentDelegator;    }}

⌨️ 快捷键说明

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