Codota Logo
Namespace
Code IndexAdd Codota to your IDE (free)

How to use
Namespace
in
org.jboss.weld.module.web.el

Best Java code snippets using org.jboss.weld.module.web.el.Namespace (Showing top 15 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: weld/core

private Namespace putIfAbsent(String key) {
  Namespace result = children.get(key);
  if (result == null) {
    result = new Namespace(key, qualifyName(key));
    children.put(key, result);
  }
  return result;
}
origin: weld/core

@Override
public boolean equals(Object other) {
  if (other instanceof Namespace) {
    Namespace that = (Namespace) other;
    return this.getQualifiedName().equals(that.getQualifiedName());
  } else {
    return false;
  }
}
origin: weld/core

/**
 * Create a new namespace hierarchy
 *
 * @param namespace
 */
public Namespace(Iterable<String> namespaces) {
  this(null, null);
  for (String namespace : namespaces) {
    String[] hierarchy = namespace.split("\\.");
    Namespace n = this;
    for (String s : hierarchy) {
      n = n.putIfAbsent(s);
    }
  }
}
origin: weld/core

Namespace namespace = null;
if (base == null) {
  if (getRootNamespace().contains(propertyString)) {
    Object value = getRootNamespace().get(propertyString);
    context.setPropertyResolved(true);
    ElLogger.LOG.propertyResolved(propertyString, value);
  if (namespace.contains(propertyString)) {
    Object value = namespace.get(propertyString);
    ElLogger.LOG.propertyResolved(propertyString, value);
    return value;
if (namespace != null) {
  name = namespace.qualifyName(propertyString);
} else {
  name = propertyString;
origin: weld/core

public WeldELResolver(BeanManagerImpl manager) {
  this.beanManager = manager;
  this.rootNamespace = LazyValueHolder.forSupplier(() -> new Namespace(manager.getDynamicAccessibleNamespaces()));
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

Namespace namespace = null;
if (base == null) {
  if (getRootNamespace().contains(propertyString)) {
    Object value = getRootNamespace().get(propertyString);
    context.setPropertyResolved(true);
    ElLogger.LOG.propertyResolved(propertyString, value);
  if (namespace.contains(propertyString)) {
    Object value = namespace.get(propertyString);
    ElLogger.LOG.propertyResolved(propertyString, value);
    return value;
if (namespace != null) {
  name = namespace.qualifyName(propertyString);
} else {
  name = propertyString;
origin: weld/core

public WeldELResolver(BeanManagerImpl manager) {
  this.beanManager = manager;
  this.rootNamespace = LazyValueHolder.forSupplier(() -> new Namespace(manager.getDynamicAccessibleNamespaces()));
}
origin: weld/core

Namespace namespace = null;
if (base == null) {
  if (getRootNamespace().contains(propertyString)) {
    Object value = getRootNamespace().get(propertyString);
    context.setPropertyResolved(true);
    ElLogger.LOG.propertyResolved(propertyString, value);
  if (namespace.contains(propertyString)) {
    Object value = namespace.get(propertyString);
    ElLogger.LOG.propertyResolved(propertyString, value);
    return value;
if (namespace != null) {
  name = namespace.qualifyName(propertyString);
} else {
  name = propertyString;
origin: weld/core

private Namespace putIfAbsent(String key) {
  Namespace result = children.get(key);
  if (result == null) {
    result = new Namespace(key, qualifyName(key));
    children.put(key, result);
  }
  return result;
}
origin: weld/core

@Override
public boolean equals(Object other) {
  if (other instanceof Namespace) {
    Namespace that = (Namespace) other;
    return this.getQualifiedName().equals(that.getQualifiedName());
  } else {
    return false;
  }
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

public WeldELResolver(BeanManagerImpl manager) {
  this.beanManager = manager;
  this.rootNamespace = LazyValueHolder.forSupplier(() -> new Namespace(manager.getDynamicAccessibleNamespaces()));
}
origin: weld/core

/**
 * Create a new namespace hierarchy
 *
 * @param namespace
 */
public Namespace(Iterable<String> namespaces) {
  this(null, null);
  for (String namespace : namespaces) {
    String[] hierarchy = namespace.split("\\.");
    Namespace n = this;
    for (String s : hierarchy) {
      n = n.putIfAbsent(s);
    }
  }
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

private Namespace putIfAbsent(String key) {
  Namespace result = children.get(key);
  if (result == null) {
    result = new Namespace(key, qualifyName(key));
    children.put(key, result);
  }
  return result;
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

@Override
public boolean equals(Object other) {
  if (other instanceof Namespace) {
    Namespace that = (Namespace) other;
    return this.getQualifiedName().equals(that.getQualifiedName());
  } else {
    return false;
  }
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

/**
 * Create a new namespace hierarchy
 *
 * @param namespace
 */
public Namespace(Iterable<String> namespaces) {
  this(null, null);
  for (String namespace : namespaces) {
    String[] hierarchy = namespace.split("\\.");
    Namespace n = this;
    for (String s : hierarchy) {
      n = n.putIfAbsent(s);
    }
  }
}
org.jboss.weld.module.web.elNamespace

Javadoc

A namespace for bean names

Most used methods

  • <init>
  • contains
  • get
  • getQualifiedName
  • putIfAbsent
  • qualifyName

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now