Klasse DefaultWeavingContext

java.lang.Object
org.aspectj.weaver.loadtime.DefaultWeavingContext
Alle implementierten Schnittstellen:
IWeavingContext

public class DefaultWeavingContext extends Object implements IWeavingContext
Use in non-OSGi environment
Autor:
David Knibb
  • Felddetails

  • Konstruktordetails

    • DefaultWeavingContext

      public DefaultWeavingContext(ClassLoader loader)
      Construct a new WeavingContext to use the specified ClassLoader This is the constructor which should be used.
      Parameter:
      loader -
  • Methodendetails

    • getResources

      public Enumeration<URL> getResources(String name) throws IOException
      Same as ClassLoader.getResources()
      Angegeben von:
      getResources in Schnittstelle IWeavingContext
      Parameter:
      name - the name of the resource to search for
      Gibt zurück:
      an enumeration containing all of the matching resources found
      Löst aus:
      IOException
    • getBundleIdFromURL

      public String getBundleIdFromURL(URL url)
      Beschreibung aus Schnittstelle kopiert: IWeavingContext
      In an OSGi environment, determine which bundle a URL originated from. In a non-OSGi environment, implementors should return null.
      Angegeben von:
      getBundleIdFromURL in Schnittstelle IWeavingContext
      Parameter:
      url -
      Gibt zurück:
      null as we are not in an OSGi environment (therefore no bundles)
    • getClassLoaderName

      public String getClassLoaderName()
      Beschreibung aus Schnittstelle kopiert: IWeavingContext
      In an environment with multiple class loaders allows each to be identified using something safer and possibly shorter than toString
      Angegeben von:
      getClassLoaderName in Schnittstelle IWeavingContext
      Gibt zurück:
      classname@hashcode
    • getClassLoader

      public ClassLoader getClassLoader()
      Angegeben von:
      getClassLoader in Schnittstelle IWeavingContext
    • getFile

      public String getFile(URL url)
      Beschreibung aus Schnittstelle kopiert: IWeavingContext
      Format a URL
      Angegeben von:
      getFile in Schnittstelle IWeavingContext
      Gibt zurück:
      filename
    • getId

      public String getId()
      Beschreibung aus Schnittstelle kopiert: IWeavingContext
      In an environment with multiple class loaders allows messages to identified according to the weaving context
      Angegeben von:
      getId in Schnittstelle IWeavingContext
      Gibt zurück:
      unqualifiedclassname@hashcode
    • getSuffix

      public String getSuffix()
    • isLocallyDefined

      public boolean isLocallyDefined(String classname)
      Beschreibung aus Schnittstelle kopiert: IWeavingContext
      Return true if the classloader associated with this weaving context is the one that will define the class with the specified name. In a delegating classloader hierarchy this might check the parent won't define it and the child will - in OSGi it will do something else.
      Angegeben von:
      isLocallyDefined in Schnittstelle IWeavingContext
      Parameter:
      classname - name of the class, eg. "java.lang.String"
      Gibt zurück:
      true if the associated classloader will define the class
    • getDefinitions

      public List<Definition> getDefinitions(ClassLoader loader, WeavingAdaptor adaptor)
      Simply call weaving adaptor back to parse aop.xml
      Angegeben von:
      getDefinitions in Schnittstelle IWeavingContext
      Parameter:
      loader -
      adaptor -
      Gibt zurück:
      List containing 0 or more Definition instances