Package org.dspace.browse

Examples of org.dspace.browse.BrowseDSpaceObject


    {
        BrowseItem[] result = new BrowseItem[docs.getDspaceObjects().size()];
        int i = 0;
        for (DSpaceObject obj : docs.getDspaceObjects())
        {
            result[i] = new BrowseDSpaceObject(context,
                    (BrowsableDSpaceObject) obj);
            i++;
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of org.dspace.browse.BrowseDSpaceObject

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.