Package com.volantis.mcs.model.descriptor

Examples of com.volantis.mcs.model.descriptor.BeanClassDescriptor


        // Javadoc inherited
        public void visit(BeanProxy proxy) {
            fireEvent((InternalProxy) proxy);

            BeanClassDescriptor descriptor = proxy.getBeanClassDescriptor();
            List properties = descriptor.getPropertyDescriptors();
            for (int i = 0; i < properties.size(); i++) {
                PropertyDescriptor property = (PropertyDescriptor)
                        properties.get(i);
                Proxy child = proxy.getPropertyProxy(property.getIdentifier());
                propagate(child);
View Full Code Here

TOP

Related Classes of com.volantis.mcs.model.descriptor.BeanClassDescriptor

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.