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

How to use
getName
method
in
org.granite.scan.ScannedItem

Best Java code snippets using org.granite.scan.ScannedItem.getName (Showing top 8 results out of 315)

origin: org.graniteds/granite-client

public void handleScannedItem(ScannedItem item) {
  if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
    try {
      handleClass(item.loadAsClass());
    } catch (Throwable t) {
      log.error(t, "Could not load class: %s", item);
    }
  }
}
origin: org.graniteds/granite-client

public void handleScannedItem(ScannedItem item) {
  if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
    try {
      handleClass(item.loadAsClass());
    } catch (NoClassDefFoundError e) {
      // Ignore errors with Tide classes depending on Gravity
    } catch (LinkageError e) {
      // Ignore errors with GraniteDS/Hibernate classes depending on Hibernate 3 when using Hibernate 4
    } catch (Throwable t) {
      log.error(t, "Could not load class: %s", item);
    }
  }
}
origin: org.graniteds/granite-server

public void handleScannedItem(ScannedItem item) {
  if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
    try {
      handleClass(item.loadAsClass());
    } catch (Throwable t) {
      log.error(t, "Could not load class: %s", item);
    }
  }
}
origin: org.graniteds/granite-server

public void handleScannedItem(ScannedItem item) {
  if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
    try {
      handleClass(item.loadAsClass());
    } catch (NoClassDefFoundError e) {
      // Ignore errors with Tide classes depending on Gravity
    } catch (LinkageError e) {
      // Ignore errors with GraniteDS/Hibernate classes depending on Hibernate 3 when using Hibernate 4
    } catch (Throwable t) {
      log.error(t, "Could not load class: %s", item);
    }
  }
}
origin: org.graniteds/granite-client-javafx

public void handleScannedItem(ScannedItem item) {
  if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
    try {
      handleClass(item.loadAsClass());
    } catch (NoClassDefFoundError e) {
      // Ignore errors with Tide classes depending on Gravity
    } catch (LinkageError e) {
      // Ignore errors with GraniteDS/Hibernate classes depending on Hibernate 3 when using Hibernate 4
    } catch (Throwable t) {
      log.error(t, "Could not load class: %s", item);
    }
  }
}
origin: org.graniteds/granite-client-java

public void handleScannedItem(ScannedItem item) {
  if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
    try {
      handleClass(item.loadAsClass());
    } catch (NoClassDefFoundError e) {
      // Ignore errors with Tide classes depending on Gravity
    } catch (LinkageError e) {
      // Ignore errors with GraniteDS/Hibernate classes depending on Hibernate 3 when using Hibernate 4
    } catch (Throwable t) {
      log.error(t, "Could not load class: %s", item);
    }
  }
}
origin: org.graniteds/granite-server-ejb

public void handleScannedItem(ScannedItem item) {
  if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
    try {
      Class<?> clazz = item.loadAsClass();
origin: org.graniteds/granite-server

public void handleScannedItem(ScannedItem item) {
  if ("class".equals(item.getExtension()) && item.getName().indexOf('$') == -1) {
    try {
      Class<?> clazz = item.loadAsClass();
org.granite.scanScannedItemgetName

Popular methods of ScannedItem

  • getExtension
  • loadAsClass
  • getClassName
  • getContent
  • loadAsProperties
  • getRelativePath

Popular in Java

  • Reactive rest calls using spring rest template
  • requestLocationUpdates (LocationManager)
  • notifyDataSetChanged (ArrayAdapter)
  • getResourceAsStream (ClassLoader)
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • JPanel (javax.swing)
  • Best plugins for Eclipse
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