⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 arraynamingenumeration.java

📁 实现了Jms的服务器源码,支持多种适配器,DB,FTP,支持多种数据库
💻 JAVA
字号:
/*
 * Copyright (C) The Apache Software Foundation. All rights reserved.
 *
 * This software is published under the terms of the Apache Software License
 * version 1.1, a copy of which has been included with this distribution in
 * the LICENSE file.
 */
package org.apache.avalon.excalibur.naming;

import java.util.NoSuchElementException;
import javax.naming.Binding;
import javax.naming.Context;
import javax.naming.NamingException;

/**
 * Class for building NamingEnumerations.
 *
 * @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
 * @version $Revision: 1.2 $
 */
final class ArrayNamingEnumeration
    extends AbstractNamingEnumeration
{
    protected Object[]   m_items;
    protected int        m_index;

    public ArrayNamingEnumeration( final Context owner,
                                   final Namespace namespace,
                                   final Object[] items )
    {
        super( owner, namespace );
        m_items = items;
        //m_index = 0;
    }

    public boolean hasMoreElements()
    {
        return m_index < m_items.length;
    }

    public Object next()
        throws NamingException
    {
        if( !hasMore() ) throw new NoSuchElementException();


        final Object object = m_items[ m_index++ ];

        if( object instanceof Binding )
        {
            final Binding binding = (Binding)object;
            final Object resolvedObject = resolve( binding.getName(), binding.getObject() );
            binding.setObject( resolvedObject );
        }

        return object;
    }

    public void close()
    {
        super.close();
        m_items = null;
    }
}

⌨️ 快捷键说明

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