MCPcopy Create free account
hub / github.com/BaseXdb/basex / setSystem

Method setSystem

basex-core/src/main/java/org/basex/util/Prop.java:210–212  ·  view source on GitHub ↗

Sets a system property if it has not been set before. @param name name of the property @param value value

(final String name, final String value)

Source from the content-addressed store, hash-verified

208 * @param value value
209 */
210 public static void setSystem(final String name, final String value) {
211 if(System.getProperty(name) == null) System.setProperty(name, value);
212 }
213
214 /**
215 * Returns the attributes from the MANIFEST.MF file.

Callers 2

setSystemMethod · 0.95
initMethod · 0.45

Calls 2

getPropertyMethod · 0.45
setPropertyMethod · 0.45

Tested by

no test coverage detected