Beispiel #1
0
  public EntityImpl() throws Exception {
    readFile = Outside.service(this, "gus.file.read.properties");
    writeFile = Outside.service(this, "gus.file.write.properties");

    storeDir = (File) Outside.resource(this, "defaultdir");
    propFile = new File(storeDir, FILENAME);

    if (propFile.exists()) map = (Map) readFile.t(propFile);
  }
Beispiel #2
0
 public EntityImpl() throws Exception {
   rootDir = (File) Outside.resource(this, "path#path.dev.entityroot");
 }
Beispiel #3
0
 public Object r(String key) throws Exception {
   return Outside.resource(this, key);
 }
Beispiel #4
0
 public EntityImpl() throws Exception {
   prop = (Map) Outside.resource(this, "prop");
 }