Codota Logo
TaglibFactory$FileTldLocation
Code IndexAdd Codota to your IDE (free)

How to use
TaglibFactory$FileTldLocation
in
freemarker.ext.jsp

Best Java code snippets using freemarker.ext.jsp.TaglibFactory$FileTldLocation (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Connection c =
  • Codota IconDataSource dataSource;dataSource.getConnection()
  • Codota IconString url;DriverManager.getConnection(url)
  • Codota IconIdentityDatabaseUtil.getDBConnection()
  • Smart code suggestions by Codota
}
origin: org.freemarker/freemarker

private void addTldLocationsFromFileDirectory(final File dir) throws IOException, SAXException {
  if (dir.isDirectory()) {
    if (LOG.isDebugEnabled()) {
      LOG.debug("Scanning for *.tld-s in File directory: " + StringUtil.jQuoteNoXSS(dir));
    }
    File[] tldFiles = dir.listFiles(new FilenameFilter() {

      public boolean accept(File urlAsFile, String name) {
        return isTldFileNameIgnoreCase(name);
      }

    });
    if (tldFiles == null) {
      throw new IOException("Can't list this directory for some reason: " + dir);
    }
    for (int i = 0; i < tldFiles.length; i++) {
      final File file = tldFiles[i];
      addTldLocationFromTld(new FileTldLocation(file));
    }
  } else {
    LOG.warn("Skipped scanning for *.tld for non-existent directory: " + StringUtil.jQuoteNoXSS(dir));
  }
}
 
origin: org.freemarker/freemarker-gae

private void addTldLocationsFromFileDirectory(final File dir) throws IOException, SAXException {
  if (dir.isDirectory()) {
    if (LOG.isDebugEnabled()) {
      LOG.debug("Scanning for *.tld-s in File directory: " + StringUtil.jQuoteNoXSS(dir));
    }
    File[] tldFiles = dir.listFiles(new FilenameFilter() {

      public boolean accept(File urlAsFile, String name) {
        return isTldFileNameIgnoreCase(name);
      }

    });
    if (tldFiles == null) {
      throw new IOException("Can't list this directory for some reason: " + dir);
    }
    for (int i = 0; i < tldFiles.length; i++) {
      final File file = tldFiles[i];
      addTldLocationFromTld(new FileTldLocation(file));
    }
  } else {
    LOG.warn("Skipped scanning for *.tld for non-existent directory: " + StringUtil.jQuoteNoXSS(dir));
  }
}
 
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.freemarker

private void addTldLocationsFromFileDirectory(final File dir) throws IOException, SAXException {
  if (dir.isDirectory()) {
    if (LOG.isDebugEnabled()) {
      LOG.debug("Scanning for *.tld-s in File directory: " + StringUtil.jQuoteNoXSS(dir));
    }
    File[] tldFiles = dir.listFiles(new FilenameFilter() {

      public boolean accept(File urlAsFile, String name) {
        return isTldFileNameIgnoreCase(name);
      }

    });
    if (tldFiles == null) {
      throw new IOException("Can't list this directory for some reason: " + dir);
    }
    for (int i = 0; i < tldFiles.length; i++) {
      final File file = tldFiles[i];
      addTldLocationFromTld(new FileTldLocation(file));
    }
  } else {
    LOG.warn("Skipped scanning for *.tld for non-existent directory: " + StringUtil.jQuoteNoXSS(dir));
  }
}
 
freemarker.ext.jspTaglibFactory$FileTldLocation

Most used methods

  • <init>

Popular in Java

  • Finding current android device location
  • getSharedPreferences (Context)
  • orElseThrow (Optional)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • StringTokenizer (java.util)
    The string tokenizer class allows an application to break a string into tokens. The tokenization met
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