Package net.sourceforge.rtf.context

Examples of net.sourceforge.rtf.context.RTFContextFieldsReader


        return t;
    }

    // /////////Velocity/Freemarker,... Context
    public RTFContextFields getContextFields(IContext context, boolean hasCircularReferences) {
        RTFContextFieldsReader loader = new RTFContextFieldsReader();
        loader.readContext(context, hasCircularReferences);
        return loader.getContextFields();
    }
View Full Code Here


     *
     * @param filename
     * @throws Exception
     */
    public void saveXmlFields(String filename, boolean force) throws Exception {
        RTFContextFieldsReader reader = new RTFContextFieldsReader();
        reader.readContext(rtfTemplate.getContext(), rtfTemplate
                .getTransformerConfig(), rtfTemplate.isCircularReferences());
        RTFContextUtil
                .saveXmlFields(filename, reader.getContextFields(), force);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.rtf.context.RTFContextFieldsReader

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.