Package org.tei.comparator.web.client

Examples of org.tei.comparator.web.client.Initialization


   
    // load properties
    PropertiesProvider properties = PropertiesProvider.getInstance();
   
    // build init object
    Initialization init = new Initialization();
   
    // file names
    init.setFile1Name(properties.getNameForInputFile1());
    init.setFile2Name(properties.getNameForInputFile2());
   
    // page images
    init.setDisplayPageImages(properties.isDisplayPageImages());
    init.setPageImageUrlFile1(properties.getPageImagesFile1Url());
    init.setPageImageUrlFile2(properties.getPageImagesFile2Url());
    init.setPageImagePreviewUrlFile1(properties.getPageImagesFile1PreviewUrl());
    init.setPageImagePreviewUrlFile2(properties.getPageImagesFile2PreviewUrl());
   
    return init;
  }
View Full Code Here

TOP

Related Classes of org.tei.comparator.web.client.Initialization

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.