Class/Object

org.opalj.fpcf.analysis

CallableFromClassesInOtherPackagesAnalysis

Related Docs: object CallableFromClassesInOtherPackagesAnalysis | package analysis

Permalink

class CallableFromClassesInOtherPackagesAnalysis extends FPCFAnalysis

This Analysis determines the ´ClientCallable´ property of a method. A method is considered as leaked if it is overridden in every immediate non-abstract subclass.

In the following scenario, m defined by B overrides m in C and (in this specific scenario) m in C is also always overridden.

/*package visible*/ class C { public Object m() }
/*package visible*/ abstract class A extends C { /*empty*/ }
public class B extends A { public Object m() }
Linear Supertypes
FPCFAnalysis, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CallableFromClassesInOtherPackagesAnalysis
  2. FPCFAnalysis
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. implicit final val classHierarchy: ClassHierarchy

    Permalink
    Definition Classes
    FPCFAnalysis
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def determineProperty(e: Entity): Property

    Permalink

    Determines the org.opalj.fpcf.properties.ClientCallable property of non-static methods.

    Determines the org.opalj.fpcf.properties.ClientCallable property of non-static methods. It is tailored to entry point set computation where we have to consider different kind of program/library usage scenarios. Computational differences regarding static methods are : - private methods can be handled equal in every context - if OPA is met, all package visible classes are visible which implies that all non-private methods are visible too - if CPA is met, methods in package visible classes are not visible by default.

  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isClosedLibrary: Boolean

    Permalink
    Definition Classes
    FPCFAnalysis
  14. final def isDesktopApplication: Boolean

    Permalink
    Definition Classes
    FPCFAnalysis
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def isJEEApplication: Boolean

    Permalink
    Definition Classes
    FPCFAnalysis
  17. final def isOpenLibrary: Boolean

    Permalink
    Definition Classes
    FPCFAnalysis
  18. implicit final val logContext: LogContext

    Permalink
    Definition Classes
    FPCFAnalysis
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. val project: SomeProject

    Permalink
  23. implicit final val propertyStore: PropertyStore

    Permalink
    Definition Classes
    FPCFAnalysis
  24. final def ps: PropertyStore

    Permalink
    Definition Classes
    FPCFAnalysis
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from FPCFAnalysis

Inherited from AnyRef

Inherited from Any

Ungrouped