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

blended.launcher.BrandingProperties Maven / Gradle / Ivy

There is a newer version: 2.5.0-M10
Show newest version
package blended.launcher;

import java.util.Map.Entry;
import java.util.Properties;

public class BrandingProperties {

	private static Properties lastBrandingProperties = new Properties();

	/* package */static void setLastBrandingProperties(final Properties properties) {
		lastBrandingProperties = properties;
	}

	public static Properties lastBrandingProperties() {
		final Properties props = new Properties();
		for (final Entry prop : lastBrandingProperties.entrySet()) {
			props.setProperty((String) prop.getKey(), (String) prop.getValue());
		}
		return props;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy