Examples of WrapperFactory


Examples of org.openntf.domino.WrapperFactory

  public LogRecordAdditionalInfo(final LogRecord logRecord) {
    Throwable t = logRecord.getThrown();
    if (t != null && t instanceof OpenNTFNotesException)
      exceptionDetails = ((OpenNTFNotesException) t).getExceptionDetails();

    WrapperFactory wf = Factory.getWrapperFactory_unchecked();
    if (wf != null)
      lastWrappedDocs = wf.getLastWrappedDocsInThread();

  }
View Full Code Here

Examples of sortpom.wrapper.operation.WrapperFactory

        final String xml = IOUtils.toString(new FileInputStream(inputFileName), UTF_8);

        final FileUtil fileUtil = new FileUtil();
        fileUtil.setup(pluginParameters);

        WrapperFactory wrapperFactory = new WrapperFactoryImpl(fileUtil);
        ((WrapperFactoryImpl) wrapperFactory).setup(pluginParameters);

        final XmlProcessor xmlProcessor = new XmlProcessor(wrapperFactory);
        xmlProcessor.setup(pluginParameters);

        if (sortAlfabeticalOnly) {
            wrapperFactory = new WrapperFactory() {

                @Override
                public HierarchyWrapper createFromRootElement(final Element rootElement) {
                    return new HierarchyWrapper(new AlphabeticalSortedWrapper(rootElement));
                }
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.