
net.sf.wcfart.tbutils.res.SystemResourceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wcf-art Show documentation
Show all versions of wcf-art Show documentation
jpivot-wcf code used by the ART reporting tool
The newest version!
package net.sf.wcfart.tbutils.res;
import java.util.Collection;
import java.util.Set;
/**
* looksup keys via System.getProperty()
*
* @author av
*/
public class SystemResourceProvider implements ResourceProvider {
public SystemResourceProvider() {
super();
}
public String getString(String key) {
return System.getProperty(key);
}
public Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy