Package org.jdesktop.wonderland.common.wfs.CellList

Examples of org.jdesktop.wonderland.common.wfs.CellList.Cell


        /*
         * Fetch an array of the names of the child cells. Check this is not
         * null, although this getChildren() should return an empty array
         * instead.
         */
        Cell childs[] = dir.getChildren();
        if (childs == null) {
            logger.fine("WFSLoader: no children in " + dir.getRelativePath());
            return;
        }
       
View Full Code Here


            if (cell == null) {
                LOGGER.warning("No WFS cell exists with name " + name);
                continue;
            }
            LOGGER.fine("Found WFS child " + name + " in path " + path);
            list.add(new Cell(name, cell.getLastModified()));
        }
       
        // Convert the list of CellChilds to an array, form into a CellList and
        // send the CellList directly to the client.
        Cell[] childs = list.toArray(new Cell[] {});
View Full Code Here

         * null, although this getChildren() should return an empty array
         * instead.
         */
        WFSCell cells[] = dir.getCells();
        for (WFSCell cell : cells) {
            cellList.addLast(new Cell(cell.getCanonicalName(), cell.getLastModified()));
            if (cell.getCellDirectory() != null) {
                children.addLast(cell.getCellDirectory());
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.common.wfs.CellList.Cell

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.