package parsers
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- class ApexClassVisitor extends TreeVisitor[ApexNode]
- case class ApexConstructorNode(location: PathLocation, name: Name, idLocation: Location, children: ArraySeq[ApexLightNode], modifiers: ArraySeq[Modifier], parseIssues: ArraySeq[Issue], params: ArraySeq[ApexFormalParameter]) extends ApexNode with Product with Serializable
- case class ApexFormalParameter(modifiers: ArraySeq[Modifier], typeName: String, name: String, parseIssues: ArraySeq[Issue]) extends Product with Serializable
- class ApexLightNode extends ApexNode
- case class ApexMethodNode(location: PathLocation, name: Name, idLocation: Location, children: ArraySeq[ApexLightNode], modifiers: ArraySeq[Modifier], parseIssues: ArraySeq[Issue], returnType: String, params: ArraySeq[ApexFormalParameter]) extends ApexNode with Product with Serializable
- trait ApexNode extends IdLocatable
- case class ExtendsType(name: Name, location: Location) extends Product with Serializable
- sealed abstract class Nature extends AnyRef
Value Members
- object ApexNode
- case object CLASS_NATURE extends Nature with Product with Serializable
- case object CONSTRUCTOR_NATURE extends Nature with Product with Serializable
- case object ENUM_CONSTANT_NATURE extends Nature with Product with Serializable
- case object ENUM_NATURE extends Nature with Product with Serializable
- case object FIELD_NATURE extends Nature with Product with Serializable
- case object INIT_NATURE extends Nature with Product with Serializable
- case object INTERFACE_NATURE extends Nature with Product with Serializable
- case object METHOD_NATURE extends Nature with Product with Serializable
- object Nature
- case object PROPERTY_NATURE extends Nature with Product with Serializable
- case object TRIGGER_NATURE extends Nature with Product with Serializable
- object UTF8Decode