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

How to use
processDirectory
method
in
com.ocpsoft.pretty.faces.config.annotation.WebClassesFinder

Best Java code snippets using com.ocpsoft.pretty.faces.config.annotation.WebClassesFinder.processDirectory (Showing top 6 results out of 315)

origin: ocpsoft/prettyfaces

public void findClasses(PrettyAnnotationHandler handler)
{
 try
 {
   // we start the recursive scan in the classes folder
   URL classesFolderUrl = servletContext.getResource(CLASSES_FOLDER);
   // abort if classes folder is missing
   if (classesFolderUrl == null)
   {
    log.warn("Cannot find classes folder: " + CLASSES_FOLDER);
    return;
   }
   // call recursive directory processing method
   processDirectory(classesFolderUrl, classesFolderUrl, handler);
 }
 catch (MalformedURLException e)
 {
   throw new IllegalStateException("Invalid URL: " + e.getMessage(), e);
 }
}
origin: ocpsoft/prettyfaces

public void findClasses(PrettyAnnotationHandler handler)
{
 try
 {
   // we start the recursive scan in the classes folder
   URL classesFolderUrl = servletContext.getResource(CLASSES_FOLDER);
   // abort if classes folder is missing
   if (classesFolderUrl == null)
   {
    log.warn("Cannot find classes folder: " + CLASSES_FOLDER);
    return;
   }
   // call recursive directory processing method
   processDirectory(classesFolderUrl, classesFolderUrl, handler);
 }
 catch (MalformedURLException e)
 {
   throw new IllegalStateException("Invalid URL: " + e.getMessage(), e);
 }
}
origin: com.ocpsoft/prettyfaces-jsf2

public void findClasses(PrettyAnnotationHandler handler)
{
 try
 {
   // we start the recursive scan in the classes folder
   URL classesFolderUrl = servletContext.getResource(CLASSES_FOLDER);
   // abort if classes folder is missing
   if (classesFolderUrl == null)
   {
    log.warn("Cannot find classes folder: " + CLASSES_FOLDER);
    return;
   }
   // call recursive directory processing method
   processDirectory(classesFolderUrl, classesFolderUrl, handler);
 }
 catch (MalformedURLException e)
 {
   throw new IllegalStateException("Invalid URL: " + e.getMessage(), e);
 }
}
origin: ocpsoft/prettyfaces

processDirectory(classesFolderUrl, entryUrl, handler);
origin: ocpsoft/prettyfaces

processDirectory(classesFolderUrl, entryUrl, handler);
origin: com.ocpsoft/prettyfaces-jsf2

processDirectory(classesFolderUrl, entryUrl, handler);
com.ocpsoft.pretty.faces.config.annotationWebClassesFinderprocessDirectory

Javadoc

Scan for classes in a single directory. This method will call itself recursively if it finds other directories and call #processClassURL(URL,PrettyAnnotationHandler) when it finds a file ending with ".class" and that is accepted by the PackageFilter

Popular methods of WebClassesFinder

  • <init>
    Initialization
  • getClassName
  • getPathRelativeToClassesFolder
    This method will create a path relative to the '/WEB-INF/classes/' folder for the given path. It wil
  • mustProcessClass
  • processClass
  • stripKnownPrefix

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • getSupportFragmentManager (FragmentActivity)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Best IntelliJ plugins
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