Searched defs:getProperty (Results 1 - 2 of 2) sorted by relevance

/javamail/mail/src/main/java/com/sun/mail/util/logging/
H A DLogManagerProperties.java188 String n = System.getProperty("java.util.logging.config.file");
222 return ((Properties) m).getProperty(name);
230 return ((LogManager) m).getProperty(name);
895 public synchronized String getProperty(final String key) { method in class:LogManagerProperties
896 String value = defaults.getProperty(key);
923 * Calls getProperty directly. If getProperty returns null the default value
932 public String getProperty(final String key, final String def) { method in class:LogManagerProperties
933 final String value = this.getProperty(key);
938 * Required to work with PropUtil. Calls getProperty directl
[all...]
/javamail/mail/src/main/java/javax/mail/
H A DSession.java211 if (Boolean.valueOf(props.getProperty("mail.debug")).booleanValue())
465 String _className = props.getProperty("mail."+protocol+".class");
523 return getStore(getProperty("mail.store.protocol"));
640 String prot = getProperty("mail.transport.protocol");
714 getProperty("mail.transport.protocol." + address.getType());
909 public String getProperty(String name) { method in class:Session
910 return props.getProperty(name);
925 String res = System.getProperty("java.home") +
1059 String res = System.getProperty("java.home") +

Completed in 16 milliseconds