Package com.tacitknowledge.flip.model

Examples of com.tacitknowledge.flip.model.FeatureDescriptors


            if (in == null) {
                return;
            }
            final JAXBContext context = JAXBContext.newInstance(FeatureDescriptors.class);
            final Unmarshaller unmarshaller = context.createUnmarshaller();
            final FeatureDescriptors descriptors = (FeatureDescriptors) unmarshaller
                    .unmarshal(in);

            cache.clear();
            if (descriptors != null && descriptors.getFeatures() != null)
            {
                for (final FeatureDescriptor descriptor : descriptors.getFeatures())
                {
                    cache.put(descriptor.getName(), descriptor);
                }
            }
        }
View Full Code Here

TOP

Related Classes of com.tacitknowledge.flip.model.FeatureDescriptors

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.