Tabnine Logo
ICacheableModel.getLastModified
Code IndexAdd Tabnine to your IDE (free)

How to use
getLastModified
method
in
jadex.commons.ICacheableModel

Best Java code snippets using jadex.commons.ICacheableModel.getLastModified (Showing top 7 results out of 315)

origin: net.sourceforge.jadex/jadex-kernel-micro

  /**
   *  Find the file for a given name.
   *  @param name    The filename or logical name (resolved via imports and extension).
   *  @param extension    The required extension.
   *  @param imports    The imports, if any.
   *  @return The resource info identifying the file.
   */
  protected ResourceInfo	getResourceInfo(String name, String extension, String[] imports, ClassLoader classloader) throws Exception
  {
    ResourceInfo ret = null;
    if(registered.containsKey(name))
    {
      // Hack!!! ignore file handling for registered models.
      ICacheableModel    model    = (ICacheableModel)registered.get(name);
      ret    = new ResourceInfo(name, null, model.getLastModified());
    }
    else
    {
      // Try to find directly as absolute path.
//            Class clazz = SReflect.findClass0(name, imports, classloader);
//            if(clazz!=null)
        ret = new ResourceInfo(name, null, 0L);
  
//            if(ret==null)
//                throw new IOException("File "+name+" not found in imports");//: "+SUtil.arrayToString(imports));
    }
    return ret;
  }
   
origin: org.activecomponents.jadex/jadex-kernel-micro

  /**
   *  Find the file for a given name.
   *  @param name    The filename or logical name (resolved via imports and extension).
   *  @param extension    The required extension.
   *  @param imports    The imports, if any.
   *  @return The resource info identifying the file.
   */
  protected ResourceInfo	getResourceInfo(String name, String extension, String[] imports, ClassLoader classloader) throws Exception
  {
    ResourceInfo ret = null;
    if(registered.containsKey(name))
    {
      // Hack!!! ignore file handling for registered models.
      ICacheableModel    model    = (ICacheableModel)registered.get(name);
      ret    = new ResourceInfo(name, null, model.getLastModified());
    }
    else
    {
      // Try to find directly as absolute path.
//            Class clazz = SReflect.findClass0(name, imports, classloader);
//            if(clazz!=null)
        ret = new ResourceInfo(name, null, 0L);
  
//            if(ret==null)
//                throw new IOException("File "+name+" not found in imports");//: "+SUtil.arrayToString(imports));
    }
    return ret;
  }
   
origin: net.sourceforge.jadex/jadex-kernel-bdiv3

  /**
   *  Find the file for a given name.
   *  @param name    The filename or logical name (resolved via imports and extension).
   *  @param extension    The required extension.
   *  @param imports    The imports, if any.
   *  @return The resource info identifying the file.
   */
  protected ResourceInfo	getResourceInfo(String name, String extension, String[] imports, ClassLoader classloader) throws Exception
  {
    ResourceInfo ret = null;
    if(registered.containsKey(name))
    {
      // Hack!!! ignore file handling for registered models.
      ICacheableModel    model    = (ICacheableModel)registered.get(name);
      ret    = new ResourceInfo(name, null, model.getLastModified());
    }
    else
    {
      // Try to find directly as absolute path.
//            Class clazz = SReflect.findClass0(name, imports, classloader);
//            if(clazz!=null)
        ret = new ResourceInfo(name, null, 0L);
  
//            if(ret==null)
//                throw new IOException("File "+name+" not found in imports");//: "+SUtil.arrayToString(imports));
    }
    return ret;
  }
   
origin: org.activecomponents.jadex/jadex-kernel-bdiv3

  /**
   *  Find the file for a given name.
   *  @param name    The filename or logical name (resolved via imports and extension).
   *  @param extension    The required extension.
   *  @param imports    The imports, if any.
   *  @return The resource info identifying the file.
   */
  protected ResourceInfo	getResourceInfo(String name, String extension, String[] imports, ClassLoader classloader) throws Exception
  {
    ResourceInfo ret = null;
    if(registered.containsKey(name))
    {
      // Hack!!! ignore file handling for registered models.
      ICacheableModel    model    = (ICacheableModel)registered.get(name);
      ret    = new ResourceInfo(name, null, model.getLastModified());
    }
    else
    {
      // Try to find directly as absolute path.
//            Class clazz = SReflect.findClass0(name, imports, classloader);
//            if(clazz!=null)
        ret = new ResourceInfo(name, null, 0L);
  
//            if(ret==null)
//                throw new IOException("File "+name+" not found in imports");//: "+SUtil.arrayToString(imports));
    }
    return ret;
  }
   
origin: org.activecomponents.jadex/jadex-commons

/**
 *  Find the file for a given name using any supported extension.
 *  @param name    The filename or logical name (resolved via imports and extensions).
 *  @param imports    The imports, if any.
 *  @return The resource info identifying the file.
 *  @throws    Exception when the file could not be found.
 */
protected ResourceInfo	getResourceInfo(String name, String[] imports, ClassLoader classloader) throws Exception
{
  ResourceInfo ret;
  if(registered.containsKey(name))
  {
    // Hack!!! ignore file handling for registered models.
    ICacheableModel    model    = (ICacheableModel)registered.get(name);
    ret    = new ResourceInfo(name, null, model.getLastModified());
  }
  else
  {
    ret = getResourceInfo0(name, imports, classloader);

    if(ret==null || ret.getInputStream()==null)
      throw new IOException("File "+name+" not found in imports.");//: "+SUtil.arrayToString(imports));
  }
  return ret;
}
origin: org.activecomponents.jadex/jadex-commons

ret    = new ResourceInfo(name, null, model.getLastModified());
origin: org.activecomponents.jadex/jadex-commons

if(cached.getLastModified()<info.getLastModified())
if(cached!=null)
  if(cached.getLastModified()<info.getLastModified())
jadex.commonsICacheableModelgetLastModified

Javadoc

Get the last modification time of the model.

Popular methods of ICacheableModel

  • getLastChecked
    Get the last check time of the model.
  • setLastChecked
    Set the last check time of the model.

Popular in Java

  • Running tasks concurrently on multiple threads
  • setScale (BigDecimal)
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • ImageIO (javax.imageio)
  • JCheckBox (javax.swing)
  • Top plugins for WebStorm
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