Package org.gocha.common

Examples of org.gocha.common.Closeable


        for( Object o : getOpenObjects().toArray() )
        {
            if( o==null )continue;
            if( o instanceof Closeable )
            {
                Closeable co = (Closeable)o;
                if( co.isClosed() )continue;
                co.close();
            }
            if( o instanceof Wrapper ){
                ((Wrapper)o).release();
            }
        }
View Full Code Here

TOP

Related Classes of org.gocha.common.Closeable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.