Package org.jdesktop.wonderland.common

Examples of org.jdesktop.wonderland.common.AssetType


            if (recordURI == null) {
                continue;
            }

            // Now generate a new Asset class
            AssetType assetType = AssetType.valueOf(record.type);
            AssetID assetID = new AssetID(recordURI, record.checksum);
            Asset asset = assetFactory.assetFactory(assetType, assetID);
            assetList.add(asset);
        }
        return assetList;
View Full Code Here


            return null;
        }

        // Create the Asset class now
        AssetID assetID = new AssetID(assetURI, assetRecord.checksum);
        AssetType assetType = AssetType.valueOf(assetRecord.type);
        Asset asset = assetFactory(assetType, assetID);
        asset.setChecksum(assetRecord.checksum);
        asset.setBaseURL(assetRecord.baseURL);
        return asset;
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.common.AssetType

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.