Package org.codehaus.preon.util

Examples of org.codehaus.preon.util.ParaContentsDocument


         *
         * @see org.codehaus.preon.el.Descriptive#document(org.codehaus.preon.el.Document)
         */

        public void document(final Document target) {
            binding.writeReference(new ParaContentsDocument(target));
        }
View Full Code Here


            return new ContextReplacingReference(this, context
                    .selectItem(index));
        }

        public void document(Document target) {
            ParaContentsDocument doc = new ParaContentsDocument(target);
            doc.document(Documenters.forDescriptor(descriptor));
        }
View Full Code Here

                throw new BindingException("No item selection allowed.");
            }

            public void document(Document target) {
                target.text("the position of an element in ");
                ParaContentsDocument doc = new ParaContentsDocument(target);
                doc.document(Documenters.forDescriptor(descriptor));
            }
View Full Code Here

TOP

Related Classes of org.codehaus.preon.util.ParaContentsDocument

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.