attributePointer = $attributePointer; $this->name = $name; $this->startPointer = $startPointer; $this->endPointer = $endPointer; $this->content = $content; } public function getAttributePointer(): int { return $this->attributePointer; } public function getName(): string { return $this->name; } public function getStartPointer(): int { return $this->startPointer; } public function getEndPointer(): int { return $this->endPointer; } public function getContent(): ?string { return $this->content; } }