All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adaptrex.core.view.BootstrapComponent Maven / Gradle / Ivy

There is a newer version: 1.0-Alpha3
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy