Examples of FeatureDescriptors


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
Copyright © 2018 www.massapi.com. 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.