Tabnine Logo
SuperProperties.put
Code IndexAdd Tabnine to your IDE (free)

How to use
put
method
in
org.apache.openejb.util.SuperProperties

Best Java code snippets using org.apache.openejb.util.SuperProperties.put (Showing top 17 results out of 315)

origin: org.apache.tomee/openejb-core

public synchronized Object setProperty(final String name, final String value) {
  return put(name, value);
}
origin: org.apache.tomee/openejb-core

if (additionalProperties.containsKey(additionalKey)) {
  for (final Map.Entry<Object, Object> entry : additionalProperties.get(additionalKey).entrySet()) {
    properties.put(entry.getKey().toString(), entry.getValue().toString());
    properties.put(property, entry.getValue());
origin: org.apache.openejb/openejb-core

@Override
public synchronized Object setProperty(final String name, final String value) {
  return put(name, value);
}
origin: org.apache.openejb/openejb-core

if (additionalProperties.containsKey(additionalKey)) {
  for (final Map.Entry<Object, Object> entry : additionalProperties.get(additionalKey).entrySet()) {
    properties.put(entry.getKey().toString(), entry.getValue().toString());
    properties.put(property, entry.getValue());
origin: org.apache.geronimo.ext.openejb/openejb-core

public synchronized Object setProperty(String name, String value) {
  return put(name, value);
}
origin: org.apache.geronimo.ext.openejb/openejb-core

public void putAll(Map<?, ?> t) {
  for (Map.Entry<?, ?> entry : t.entrySet()) {
    put(entry.getKey(), entry.getValue());
  }
  if (t instanceof SuperProperties) {
    SuperProperties superProperties = (SuperProperties) t;
    for (Map.Entry<String, String> entry : superProperties.comments.entrySet()) {
      comments.put(normalize(entry.getKey()), entry.getValue());
    }
    for (Map.Entry<String, LinkedHashMap<String, String>> entry : superProperties.attributes.entrySet()) {
      attributes.put(normalize(entry.getKey()), entry.getValue());
    }
  }
}
origin: org.apache.tomee/openejb-core

public void putAll(final Map<?, ?> t) {
  for (final Map.Entry<?, ?> entry : t.entrySet()) {
    put(entry.getKey(), entry.getValue());
  }
  if (t instanceof SuperProperties) {
    final SuperProperties superProperties = (SuperProperties) t;
    for (final Map.Entry<String, String> entry : superProperties.comments.entrySet()) {
      comments.put(normalize(entry.getKey()), entry.getValue());
    }
    for (final Map.Entry<String, LinkedHashMap<String, String>> entry : superProperties.attributes.entrySet()) {
      attributes.put(normalize(entry.getKey()), entry.getValue());
    }
  }
}
origin: org.apache.openejb/openejb-core

@Override
public void putAll(final Map<?, ?> t) {
  for (final Map.Entry<?, ?> entry : t.entrySet()) {
    put(entry.getKey(), entry.getValue());
  }
  if (t instanceof SuperProperties) {
    final SuperProperties superProperties = (SuperProperties) t;
    for (final Map.Entry<String, String> entry : superProperties.comments.entrySet()) {
      comments.put(normalize(entry.getKey()), entry.getValue());
    }
    for (final Map.Entry<String, LinkedHashMap<String, String>> entry : superProperties.attributes.entrySet()) {
      attributes.put(normalize(entry.getKey()), entry.getValue());
    }
  }
}
origin: org.apache.geronimo.ext.openejb/openejb-core

p.put(info.id, uri);
    p.put(info.id + "." + entry.getKey(), "xxxx");
  } else {
    p.put(info.id + "." + entry.getKey(), entry.getValue());
origin: org.apache.tomee/openejb-core

final String key = entry.getAttribute("key");
final String value = entry.getTextContent();
put(key, value);
origin: org.apache.openejb/openejb-core

p.put(info.id, uri);
    p.put(info.id + "." + entry.getKey(), "xxxx");
  } else {
    p.put(info.id + "." + entry.getKey(), entry.getValue());
origin: org.apache.geronimo.ext.openejb/openejb-core

String key = entry.getAttribute("key");
String value = entry.getTextContent();
put(key, value);
origin: org.apache.tomee/openejb-core

p.put(info.id, uri);
    p.put(info.id + "." + entry.getKey(), "xxxx");
  } else {
    p.put(info.id + "." + entry.getKey(), entry.getValue());
origin: org.apache.openejb/openejb-core

final String key = entry.getAttribute("key");
final String value = entry.getTextContent();
put(key, value);
origin: org.apache.geronimo.ext.openejb/openejb-core

      put(key.toString(), value == null ? "" : value.toString());
put(key.toString(), value == null ? "" : value.toString());
origin: org.apache.openejb/openejb-core

      put(key.toString(), value == null ? "" : value.toString());
put(key.toString(), value == null ? "" : value.toString());
origin: org.apache.tomee/openejb-core

      put(key.toString(), value == null ? "" : value.toString());
put(key.toString(), value == null ? "" : value.toString());
org.apache.openejb.utilSuperPropertiesput

Popular methods of SuperProperties

  • <init>
    Constructs a new Properties object using the specified default properties.
  • caseInsensitive
  • entrySet
    Returns an unmodifiable view of the entries.
  • getProperty
  • putAll
  • containsKey
  • decodeEscapeChar
  • decodeNextCharacter
  • dumpComment
  • dumpString
  • get
  • getAttributes
    Searches for the attributes associated with the specified property. If the property is not found, lo
  • get,
  • getAttributes,
  • getComment,
  • getDocumentBuilder,
  • isEmpty,
  • keySet,
  • keys,
  • normalize,
  • propertyNames

Popular in Java

  • Creating JSON documents from java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • findViewById (Activity)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now