congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
UIComponentBase$PassThroughAttributesMap
Code IndexAdd Tabnine to your IDE (free)

How to use
UIComponentBase$PassThroughAttributesMap
in
javax.faces.component

Best Java code snippets using javax.faces.component.UIComponentBase$PassThroughAttributesMap (Showing top 20 results out of 315)

origin: eclipse-ee4j/mojarra

@Override
public Object put(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.put(key, value);
}
origin: javax.faces/javax.faces-api

@Override
public Map<String, Object> getPassThroughAttributes(boolean create) {
  Map<String, Object> result = (Map<String, Object>) 
      this.getStateHelper().get(PropertyKeys.passThroughAttributes);
  if (null == result) {
    if (create) {
      result = new PassThroughAttributesMap<>();
      this.getStateHelper().put(PropertyKeys.passThroughAttributes, 
          result);
    }
  }
  
  return result;
}
origin: eclipse-ee4j/mojarra

@Override
public Object put(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.put(key, value);
}
origin: eclipse-ee4j/mojarra

@Override
public Map<String, Object> getPassThroughAttributes(boolean create) {
  @SuppressWarnings("unchecked")
  Map<String, Object> passThroughAttributes = (Map<String, Object>) this.getStateHelper().get(PropertyKeys.passThroughAttributes);
  if (passThroughAttributes == null && create) {
    passThroughAttributes = new PassThroughAttributesMap<>();
    getStateHelper().put(PropertyKeys.passThroughAttributes, passThroughAttributes);
  }
  return passThroughAttributes;
}
origin: eclipse-ee4j/mojarra

@Override
public Object putIfAbsent(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.putIfAbsent(key, value);
}
origin: eclipse-ee4j/mojarra

@Override
public Map<String, Object> getPassThroughAttributes(boolean create) {
  @SuppressWarnings("unchecked")
  Map<String, Object> passThroughAttributes = (Map<String, Object>) this.getStateHelper().get(PropertyKeys.passThroughAttributes);
  if (passThroughAttributes == null && create) {
    passThroughAttributes = new PassThroughAttributesMap<>();
    getStateHelper().put(PropertyKeys.passThroughAttributes, passThroughAttributes);
  }
  return passThroughAttributes;
}
origin: org.glassfish/jakarta.faces

@Override
public Object putIfAbsent(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.putIfAbsent(key, value);
}
origin: javax/javaee-web-api

@Override
public Map<String, Object> getPassThroughAttributes(boolean create) {
  Map<String, Object> result = (Map<String, Object>) 
      this.getStateHelper().get(PropertyKeys.passThroughAttributes);
  if (null == result) {
    if (create) {
      result = new PassThroughAttributesMap<>();
      this.getStateHelper().put(PropertyKeys.passThroughAttributes, 
          result);
    }
  }
  
  return result;
}
origin: jboss/jboss-javaee-specs

@Override
public Map<String, Object> getPassThroughAttributes(boolean create) {
  Map<String, Object> result = (Map<String, Object>) 
      this.getStateHelper().get(PropertyKeys.passThroughAttributes);
  if (null == result) {
    if (create) {
      result = new PassThroughAttributesMap<>();
      this.getStateHelper().put(PropertyKeys.passThroughAttributes, 
          result);
    }
  }
  
  return result;
}
origin: org.glassfish/jakarta.faces

@Override
public Object put(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.put(key, value);
}
origin: javax.faces/javax.faces-api

@Override
public Object putIfAbsent(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.putIfAbsent(key, value);
}

origin: jboss/jboss-javaee-specs

@Override
public Object putIfAbsent(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.putIfAbsent(key, value);
}

origin: jboss/jboss-javaee-specs

@Override
public Object put(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.put(key, value);
}

origin: eclipse-ee4j/mojarra

@Override
public Object putIfAbsent(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.putIfAbsent(key, value);
}
origin: org.glassfish/javax.faces

@Override
public Object putIfAbsent(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.putIfAbsent(key, value);
}
origin: com.sun.faces/jsf-api

@Override
public Map<String, Object> getPassThroughAttributes(boolean create) {
  Map<String, Object> result = (Map<String, Object>) 
      this.getStateHelper().get(PropertyKeys.passThroughAttributes);
  if (null == result) {
    if (create) {
      result = new PassThroughAttributesMap<String, Object>();
      this.getStateHelper().put(PropertyKeys.passThroughAttributes, 
          result);
    }
  }
  
  return result;
}
origin: com.sun.faces/jsf-api

@Override
public Object put(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.put(key, value);
}

origin: javax/javaee-web-api

@Override
public Object putIfAbsent(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.putIfAbsent(key, value);
}

origin: javax.faces/javax.faces-api

@Override
public Object put(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.put(key, value);
}

origin: javax/javaee-web-api

@Override
public Object put(String key, Object value) {
  if (null == key || null == value) {
    throw new NullPointerException();
  }
  validateKey(key);
  return super.put(key, value);
}

javax.faces.componentUIComponentBase$PassThroughAttributesMap

Most used methods

  • <init>
  • validateKey

Popular in Java

  • Running tasks concurrently on multiple threads
  • startActivity (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • addToBackStack (FragmentTransaction)
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top plugins for WebStorm
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