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

How to use
URLBeanName
in
com.ocpsoft.pretty.faces.annotation

Best Java code snippets using com.ocpsoft.pretty.faces.annotation.URLBeanName (Showing top 4 results out of 315)

origin: ocpsoft/prettyfaces

/**
* Checks the class for a {@link URLBeanName} annotation.
* 
* @param clazz Class to scan
*/
private void processPrettyBeanAnnotation(Class clazz)
{
 // get reference to @URLMapping annotation
 URLBeanName prettyBean = (URLBeanName) clazz.getAnnotation(URLBeanName.class);
 // process annotation if it exists
 if (prettyBean != null)
 {
   // log class name
   if (log.isTraceEnabled())
   {
    log.trace("Found @URLBeanName annotation on class: " + clazz.getName());
   }
   // add bean to map
   beanNameMap.put(clazz, prettyBean.value());
 }
}
origin: ocpsoft/prettyfaces

/**
* Checks the class for a {@link URLBeanName} annotation.
* 
* @param clazz Class to scan
*/
private void processPrettyBeanAnnotation(Class clazz)
{
 // get reference to @URLMapping annotation
 URLBeanName prettyBean = (URLBeanName) clazz.getAnnotation(URLBeanName.class);
 // process annotation if it exists
 if (prettyBean != null)
 {
   // log class name
   if (log.isTraceEnabled())
   {
    log.trace("Found @URLBeanName annotation on class: " + clazz.getName());
   }
   // add bean to map
   beanNameMap.put(clazz, prettyBean.value());
 }
}
origin: ocpsoft/rewrite

/**
* Checks the class for a {@link URLBeanName} annotation.
* 
* @param clazz Class to scan
*/
private void processPrettyBeanAnnotation(Class<?> clazz)
{
 // get reference to @URLMapping annotation
 URLBeanName prettyBean = (URLBeanName) clazz.getAnnotation(URLBeanName.class);
 // process annotation if it exists
 if (prettyBean != null)
 {
   // log class name
   if (log.isTraceEnabled())
   {
    log.trace("Found @URLBeanName annotation on class: " + clazz.getName());
   }
   // add bean to map
   beanNameMap.put(clazz, prettyBean.value());
 }
}
origin: com.ocpsoft/prettyfaces-jsf2

/**
* Checks the class for a {@link URLBeanName} annotation.
* 
* @param clazz Class to scan
*/
private void processPrettyBeanAnnotation(Class clazz)
{
 // get reference to @URLMapping annotation
 URLBeanName prettyBean = (URLBeanName) clazz.getAnnotation(URLBeanName.class);
 // process annotation if it exists
 if (prettyBean != null)
 {
   // log class name
   if (log.isTraceEnabled())
   {
    log.trace("Found @URLBeanName annotation on class: " + clazz.getName());
   }
   // add bean to map
   beanNameMap.put(clazz, prettyBean.value());
 }
}
com.ocpsoft.pretty.faces.annotationURLBeanName

Most used methods

  • value

Popular in Java

  • Updating database using SQL prepared statement
  • getContentResolver (Context)
  • setScale (BigDecimal)
  • setRequestProperty (URLConnection)
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • 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