com.adaptrex.core.view.BootstrapComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adaptrex-core Show documentation
Show all versions of adaptrex-core Show documentation
The Core Adaptrex Framework
package com.adaptrex.core.view;
import com.adaptrex.core.AdaptrexConfig;
import com.adaptrex.core.services.AdaptrexServices;
public class BootstrapComponent {
private String extBuild;
public BootstrapComponent() {
this(null);
};
public BootstrapComponent(String extBuild) {
this.extBuild = extBuild != null ? extBuild :
AdaptrexServices.getConfig().get(AdaptrexConfig.EXT_BUILD, "production");
};
public String toString() {
return "\n";
}
public void setExtBuild(String extBuild) {
this.extBuild = extBuild;
}
}