Package org.foray.common

Examples of org.foray.common.CharSequenceSubset


         * testing purposes as it just dumps the text out without any final
         * adjustments.
         * @return The raw text from the FO Tree.
         */
        public CharSequence getRawText() {
            return new CharSequenceSubset(this.wrappedSequence, this.start, this.length);
        }
View Full Code Here


                    || end > length()
                    || start > end) {
                throw new IndexOutOfBoundsException("Illegal sub-sequence bounds.");
            }
            final int subSize = end - start;
            return new CharSequenceSubset(this, start, subSize);
        }
View Full Code Here

TOP

Related Classes of org.foray.common.CharSequenceSubset

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.