Package info.bliki.wiki.model

Examples of info.bliki.wiki.model.IConfiguration


    HashMap<String, String> map = (HashMap<String, String>) objs[0];
    String templateName = ((String) objs[1]).trim();
    String cacheKey = templateName + objs[2];
    Map<String, String> templateCallsCache = null;
    if (cacheKey.length() < 256 && fWikiModel instanceof IConfiguration) {
      IConfiguration config = (IConfiguration) fWikiModel;
      templateCallsCache = config.getTemplateCallsCache();
      if (templateCallsCache != null) {
        String value = templateCallsCache.get(cacheKey);
        if (value != null) {
          // System.out.println("Cache key: " + cacheKey);
          writer.append(value);
View Full Code Here

TOP

Related Classes of info.bliki.wiki.model.IConfiguration

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.