Class ImportManager

java.lang.Object
org.apache.jena.assembler.ImportManager

public class ImportManager extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ImportManager
    A shared instance of ImportManage, used as a default by several other assembler methods.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Clear this ImportManager's cache.
    Answer model if it has no imports, or a union model with model as its base and its imported models as the other components.
    Answer model if it has no imports, or a union model with model as its base and its imported models as the other components.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • instance

      public static final ImportManager instance
      A shared instance of ImportManage, used as a default by several other assembler methods.
  • Constructor Details

    • ImportManager

      public ImportManager()
  • Method Details

    • clear

      public void clear()
      Clear this ImportManager's cache.
    • withImports

      public Model withImports(Model model)
      Answer model if it has no imports, or a union model with model as its base and its imported models as the other components. The default file manager is used to load the models.
    • withImports

      public Model withImports(FileManager fm, Model model)
      Answer model if it has no imports, or a union model with model as its base and its imported models as the other components. The file manager fm is used to load the imported models.