com.genexus.ClientConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxclassR Show documentation
Show all versions of gxclassR Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus;
import com.genexus.util.GxUtilsLoader;
public class ClientConfig
{
public static void execute()
{
main(new String[] {});
}
public static void main(String arg[])
{
ClientContext.setModelContext(new ModelContext(ClientConfig.class));
ApplicationContext.getInstance().setGXUtility(true);
String[] fileName = new String[1];
fileName[0] = (arg.length == 0)?"client.cfg":arg[0];
GxUtilsLoader.runClientConfig(fileName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy