}
}
@Override
public LuaTable getInterface() {
final LuaTable table = new LuaTable();
table.set("loadPackage", loadPackage());
table.set("frameExists", frameExists());
table.set("newChildFrame", newChildFrame());
table.set("getExpandedArgument", getExpandedArgument());
table.set("getAllExpandedArguments", getAllExpandedArguments());
table.set("getFrameTitle", getFrameTitle());
table.set("expandTemplate", expandTemplate());
table.set("callParserFunction", callParserFunction());
table.set("preprocess", preprocess());
table.set("incrementExpensiveFunctionCount", incrementExpensiveFunctionCount());
table.set("isSubsting", isSubsting());
return table;
}