Package com.sun.star.lib.uno.helper

Examples of com.sun.star.lib.uno.helper.WeakBase


    {
        System.out.println("Testing WeakReference");
        boolean[] r= new boolean[50];
        int i= 0;

        WeakBase aObj1= new WeakBase();
//        WeakBase aObj2= new WeakBase();
        WeakReference wr1= new WeakReference(aObj1);
        WeakReference wr2= new WeakReference(wr1);
       
        r[i++]= wr1.get() == aObj1;
View Full Code Here

TOP

Related Classes of com.sun.star.lib.uno.helper.WeakBase

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.