Package com.redcareditor.plist

Examples of com.redcareditor.plist.PlistPropertyLoader


  private PlistPropertyLoader propertyLoader;
  private boolean isInitialized = false;

  public Theme(Dict dict) {
    propertyLoader = new PlistPropertyLoader(dict, this);
    propertyLoader.loadStringProperty("name");
    propertyLoader.loadStringProperty("author");
    loadSettings(dict);
  }
View Full Code Here


  /* these are here for lookup speed purposes */
  private static Map<String, Grammar> grammarsByScopeNames = new HashMap<String, Grammar>();
 
  public Grammar(String plistFile){
    this.plist = Dict.parseFile(plistFile);
    propertyLoader = new PlistPropertyLoader(plist, this);
    initForReference();
  }
View Full Code Here

TOP

Related Classes of com.redcareditor.plist.PlistPropertyLoader

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.