Package org.jdesktop.wonderland.common.wfs

Examples of org.jdesktop.wonderland.common.wfs.CellPath


                // Form the new parent path for this cell to pass down. If this
                // parent is at the root, then parentPath is null, so we need to
                // check for this
                String cellName = get.getCellDescriptor().getCellUniqueName();
                CellPath thisPath = (entry.parentPath != null) ?
                    entry.parentPath.getChildPath(cellName) : new CellPath(cellName);

                // finally, add entries for any children of this cell
                for (CellID childID : get.getChildren()) {
                    cells.add(new CellExportEntry(childID, thisPath));
                }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.common.wfs.CellPath

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.