Packages

final case class ApexPropertyDeclaration(thisType: ThisType, _modifiers: ModifierResults, typeName: TypeName, id: Id, propertyBlocks: Seq[PropertyBlock]) extends ClassBodyDeclaration with ApexFieldLike with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ApexPropertyDeclaration
  2. Serializable
  3. Product
  4. Equals
  5. ApexFieldLike
  6. Referenceable
  7. FieldDeclaration
  8. Dependent
  9. IdentityEquality
  10. ClassBodyDeclaration
  11. ApexNode
  12. IdLocatable
  13. DependencyHolder
  14. CST
  15. Positionable
  16. UnsafeLocatable
  17. Locatable
  18. AnyRef
  19. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ApexPropertyDeclaration(thisType: ThisType, _modifiers: ModifierResults, typeName: TypeName, id: Id, propertyBlocks: Seq[PropertyBlock])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _modifiers: ModifierResults
  5. def addDependencyHolder(dependencyHolder: DependencyHolder): Unit
    Definition Classes
    Dependent
  6. def addReferencingLocation(referencingLocation: PathLocation): Unit

    Add a reference location to the list of references for this specific Referencable.

    Add a reference location to the list of references for this specific Referencable. Adding references is gated so that we can control when references are collected. This must be called from some part of the validation logic to establish the references.

    Definition Classes
    Referenceable
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val children: ArraySeq[ApexNode]
    Definition Classes
    ApexPropertyDeclarationApexNode
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. def collectDependencies(dependsOn: Set[Dependent]): Unit
    Definition Classes
    ClassBodyDeclaration
  11. def collectIssues(issues: ArrayBuffer[Issue]): Unit
    Attributes
    protected
    Definition Classes
    ApexNode
  12. def collectIssues(): ArraySeq[Issue]
    Definition Classes
    ApexNode
  13. def collectRelatedReferencable(): Set[_ <: Referenceable]

    Collect all the referenceable elements that are related to this class.

    Collect all the referenceable elements that are related to this class. Override this to expand the reference search, such as for method overloading.

    Definition Classes
    Referenceable
  14. def dependencies(): Iterable[Dependent]

    Get Dependents being held, default to empty for holders who do not use this, override as needed

    Get Dependents being held, default to empty for holders who do not use this, override as needed

    Definition Classes
    ClassBodyDeclarationDependencyHolder
  15. def dependencySummary(): Array[DependentSummary]

    Convert dependencies into a summary format

    Convert dependencies into a summary format

    Definition Classes
    DependencyHolder
  16. var depends: Option[SkinnySet[Dependent]]
    Attributes
    protected
    Definition Classes
    ClassBodyDeclaration
  17. val description: String
    Definition Classes
    ClassBodyDeclarationApexNode
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(that: Any): Boolean
    Definition Classes
    IdentityEquality → AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def getCurrentReferences(refresh: (Seq[PathLike]) => Unit): Set[TargetLocation]

    Collect all reference locations for this Referencable.

    Collect all reference locations for this Referencable. The basic approach here is to collect references to things during a revalidation pass. The ReferenceProvider uses this.

    Definition Classes
    Referenceable
  23. def getDependencyHolders: Set[DependencyHolder]
    Definition Classes
    Dependent
  24. def getSObjectStaticField(shareTypeName: Option[TypeName], module: Option[Module]): CustomField
    Definition Classes
    FieldDeclaration
  25. val getter: Option[GetterPropertyBlock]
  26. def hasHolders: Boolean
    Definition Classes
    Dependent
  27. def hasNonTestHolders: Boolean
    Definition Classes
    Dependent
  28. def hashCode(): Int
    Definition Classes
    IdentityEquality → AnyRef → Any
  29. val id: Id
  30. def idLocation: Location
    Definition Classes
    ApexPropertyDeclarationIdLocatable
  31. def idPathLocation: PathLocation
    Definition Classes
    IdLocatable
  32. val idTarget: Option[TypeName]
    Definition Classes
    ApexFieldLikeFieldDeclaration
  33. val inTest: Boolean

    Is the holder within test code

    Is the holder within test code

    Definition Classes
    ApexPropertyDeclarationDependencyHolder
  34. def isExternallyVisible: Boolean
    Definition Classes
    FieldDeclaration
  35. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  36. def isReadOnly: Boolean
    Definition Classes
    ApexFieldLike
  37. def isStatic: Boolean
    Definition Classes
    FieldDeclaration
  38. def localIssues: Seq[Issue]
    Definition Classes
    ApexNode
  39. def location: PathLocation
    Definition Classes
    PositionableUnsafeLocatableLocatable
  40. def modifierIssues: ArraySeq[Issue]
    Definition Classes
    ClassBodyDeclaration
  41. val modifiers: ArraySeq[Modifier]
    Definition Classes
    ClassBodyDeclarationApexNode
  42. val name: Name
  43. val nature: Nature
  44. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  45. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  46. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  47. val parseIssues: ArraySeq[Issue]
    Definition Classes
    ClassBodyDeclarationApexNode
  48. def productElementNames: Iterator[String]
    Definition Classes
    Product
  49. def propagateDependencies(): Unit

    Inform each dependent this is holding a dependency to them

    Inform each dependent this is holding a dependency to them

    Definition Classes
    DependencyHolder
  50. val propertyBlocks: Seq[PropertyBlock]
  51. val readAccess: Modifier
  52. def safeLocation: Option[PathLocation]
    Definition Classes
    UnsafeLocatable
  53. def setDepends(dependencies: SkinnySet[Dependent]): Unit
    Definition Classes
    ClassBodyDeclaration
  54. def setLocation(path: PathLike, startLine: Int, startOffset: Int, endLine: Int, endOffset: Int): Unit
    Definition Classes
    Positionable
  55. val setter: Option[SetterPropertyBlock]
  56. lazy val signature: String
    Definition Classes
    ClassBodyDeclarationApexNode
  57. def summary: FieldSummary
    Definition Classes
    ApexFieldLike
  58. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  59. val thisType: ThisType
  60. val thisTypeId: TypeId

    Referencable must be able to provide a TypeId for the containing type to support revalidation.

    Referencable must be able to provide a TypeId for the containing type to support revalidation.

    Definition Classes
    ApexPropertyDeclarationApexFieldLikeReferenceable
  61. def thisTypeIdOpt: Option[TypeId]

    The TypeId for the containing type of the holder, optional as requires a module.

    The TypeId for the containing type of the holder, optional as requires a module.

    Definition Classes
    ApexFieldLikeDependencyHolder
  62. def toString(): String
    Definition Classes
    FieldDeclaration → AnyRef → Any
  63. val typeName: TypeName
  64. def validate(context: BodyDeclarationVerifyContext): Unit
    Definition Classes
    ClassBodyDeclaration
  65. def verify(context: BodyDeclarationVerifyContext): Unit
  66. def visibility: Option[Modifier]
    Definition Classes
    FieldDeclaration
  67. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  68. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  69. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  70. def withContext(context: ParserRuleContext): ApexPropertyDeclaration.this.type
    Definition Classes
    CST
  71. def withLocation(location: PathLocation): ApexPropertyDeclaration.this.type
    Definition Classes
    Positionable
  72. val writeAccess: Modifier

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ApexFieldLike

Inherited from Referenceable

Inherited from FieldDeclaration

Inherited from Dependent

Inherited from IdentityEquality

Inherited from ClassBodyDeclaration

Inherited from ApexNode

Inherited from IdLocatable

Inherited from DependencyHolder

Inherited from CST

Inherited from Positionable

Inherited from UnsafeLocatable

Inherited from Locatable

Inherited from AnyRef

Inherited from Any

Ungrouped