= Iteration on config loading

This commit is contained in:
Matthew Cech
2019-06-20 00:24:37 -07:00
parent 99cd76de83
commit 2b781325f5
7 changed files with 115 additions and 27 deletions
+25 -2
View File
@@ -2,12 +2,11 @@ package core;
import utils.GlobalLog;
import utils.LogFilter;
import utils.io.FileMonitor;
// A quick-and-dirty localization tool that scrapes the project for calls to itself, then
// generates/updates a file externally (phrases.config) with all the stub values as keys that
// can then be localized.
public class LocStrings extends BaseLocFile
public class LocStrings extends BaseLocFile implements IConfigSection
{
public static final String fileName = Constants.AssetDirectory + "locStrings.config";
public static final String function = "LocStrings.stub";
@@ -40,4 +39,28 @@ public class LocStrings extends BaseLocFile
{
return instance.getKey(stubbedPreviously);
}
@Override
public String getHeader() {
// TODO Auto-generated method stub
return null;
}
@Override
public void preUpdate() {
// TODO Auto-generated method stub
}
@Override
public void init() {
// TODO Auto-generated method stub
}
@Override
public String getContent() {
// TODO Auto-generated method stub
return null;
}
}