Tabnine Logo
FunctionMapperImpl$Function
Code IndexAdd Tabnine to your IDE (free)

How to use
FunctionMapperImpl$Function
in
org.jboss.el.lang

Best Java code snippets using org.jboss.el.lang.FunctionMapperImpl$Function (Showing top 15 results out of 315)

origin: asual/summer

public void addFunction(String prefix, String localName, Method m) {
  if (this.functions == null) {
    this.functions = new HashMap();
  }
  Function f = new Function(prefix, localName, m);
  synchronized (this) {
    this.functions.put(prefix+":"+localName, f);
    this.functions.put(prefix+":"+localName+":"+m.getParameterTypes().length, f);
  }
}
origin: asual/summer

public void writeExternal(ObjectOutput out) throws IOException {
  out.writeUTF((this.prefix != null) ? this.prefix : "");
  out.writeUTF(this.localName);
  out.writeUTF(this.getMethod().getDeclaringClass().getName());
  out.writeUTF(this.getMethod().getName());
  out.writeObject(ReflectionUtil.toTypeNameArray(this.getMethod().getParameterTypes()));		
}
origin: org.jboss.el/jboss-el

public void writeExternal(ObjectOutput out) throws IOException {
  out.writeUTF((this.prefix != null) ? this.prefix : "");
  out.writeUTF(this.localName);
  out.writeUTF(this.getMethod().getDeclaringClass().getName());
  out.writeUTF(this.getMethod().getName());
  out.writeObject(ReflectionUtil.toTypeNameArray(this.getMethod().getParameterTypes()));		
}
origin: org.jboss.el/jboss-el

public Method resolveFunction(String prefix, String localName, int paramCount) {
  if (this.functions != null) {
   Function f = (Function) this.functions.get(prefix + ":" + localName + ":" + paramCount);
   return f != null ? f.getMethod() : null;
 }
 return null;
}
origin: org.jboss.el/jboss-el

public Method resolveFunction(String prefix, String localName) {
  if (this.functions != null) {
    Function f = (Function) this.functions.get(prefix + ":" + localName);
    return f != null ? f.getMethod() : null;
  }
  return null;
}

origin: asual/summer

public Method resolveFunction(String prefix, String localName, int paramCount) {
  if (this.functions != null) {
   Function f = (Function) this.functions.get(prefix + ":" + localName + ":" + paramCount);
   return f != null ? f.getMethod() : null;
 }
 return null;
}
origin: com.asual.summer/summer-el

public void addFunction(String prefix, String localName, Method m) {
  if (this.functions == null) {
    this.functions = new HashMap();
  }
  Function f = new Function(prefix, localName, m);
  synchronized (this) {
    this.functions.put(prefix+":"+localName, f);
    this.functions.put(prefix+":"+localName+":"+m.getParameterTypes().length, f);
  }
}
origin: com.asual.summer/summer-el

public Method resolveFunction(String prefix, String localName, int paramCount) {
  if (this.functions != null) {
   Function f = (Function) this.functions.get(prefix + ":" + localName + ":" + paramCount);
   return f != null ? f.getMethod() : null;
 }
 return null;
}
origin: com.asual.summer/summer-el

public Method resolveFunction(String prefix, String localName) {
  if (this.functions != null) {
    Function f = (Function) this.functions.get(prefix + ":" + localName);
    return f != null ? f.getMethod() : null;
  }
  return null;
}

origin: com.asual.summer/summer-el

public boolean equals(Object obj) {
  if (obj instanceof Function) {
    return this.hashCode() == obj.hashCode();
  }
  return false;
}

origin: org.jboss.el/jboss-el

public boolean equals(Object obj) {
  if (obj instanceof Function) {
    return this.hashCode() == obj.hashCode();
  }
  return false;
}

origin: org.jboss.el/jboss-el

public void addFunction(String prefix, String localName, Method m) {
  if (this.functions == null) {
    this.functions = new HashMap();
  }
  Function f = new Function(prefix, localName, m);
  synchronized (this) {
    this.functions.put(prefix+":"+localName, f);
    this.functions.put(prefix+":"+localName+":"+m.getParameterTypes().length, f);
  }
}
origin: asual/summer

public boolean equals(Object obj) {
  if (obj instanceof Function) {
    return this.hashCode() == obj.hashCode();
  }
  return false;
}

origin: com.asual.summer/summer-el

public void writeExternal(ObjectOutput out) throws IOException {
  out.writeUTF((this.prefix != null) ? this.prefix : "");
  out.writeUTF(this.localName);
  out.writeUTF(this.getMethod().getDeclaringClass().getName());
  out.writeUTF(this.getMethod().getName());
  out.writeObject(ReflectionUtil.toTypeNameArray(this.getMethod().getParameterTypes()));		
}
origin: asual/summer

public Method resolveFunction(String prefix, String localName) {
  if (this.functions != null) {
    Function f = (Function) this.functions.get(prefix + ":" + localName);
    return f != null ? f.getMethod() : null;
  }
  return null;
}

org.jboss.el.langFunctionMapperImpl$Function

Most used methods

  • <init>
  • getMethod
  • hashCode

Popular in Java

  • Making http requests using okhttp
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • compareTo (BigDecimal)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • String (java.lang)
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top plugins for Android Studio
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