Package com.volantis.shared.metadata.value

Examples of com.volantis.shared.metadata.value.ImmutableMetaDataValueVisitee.accept()


            }
            processor = new XPathProcessor(xpath);
            ImmutableMetaDataValueVisitee visitee =
                    (ImmutableMetaDataValueVisitee) characteristics;
            try {
                visitee.accept(this);
            } catch (RuntimeCharacteristicNotAvailableException e) {
                logger.error("service-def-path-failure",
                             new String[] {xpath, serviceName}, e);
                throw e.getCharacteristicNotAvailableException();
            }
View Full Code Here


                // index is ok so we can retrive the value and visit that
                ImmutableMetaDataValueVisitee visitee =
                        (ImmutableMetaDataValueVisitee)
                            list.get(index);
                visitee.accept(this);
            }
        }

        // javadoc inherited
        public void visit(ImmutableNumberValue immutableNumberValue) {
View Full Code Here

                assertIndexValid(collection, index);
                // we can retrieve the meta value from the set and visit it
                Object[] items = collection.toArray();
                ImmutableMetaDataValueVisitee visitee =
                        (ImmutableMetaDataValueVisitee) items[index];
                visitee.accept(this);
            }
        }

        // javadoc inherited
        public void visit(ImmutableStructureValue immutableStructureValue) {
View Full Code Here

                assertFieldNext();
                String field = processor.popPath();
                assertFieldAvaliable(fieldValues, field);
                ImmutableMetaDataValueVisitee visitee =
                        (ImmutableMetaDataValueVisitee) fieldValues.get(field);
                visitee.accept(this);
            }
        }

        // javadoc inherited
        public void visit(ImmutableStringValue immutableStringValue) {
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.