accessFlag = $this->readUnsignedShort(); $this->nameIndex = $this->readUnsignedShort(); $this->descriptorIndex = $this->readUnsignedShort(); $this->attributeCount = $this->readUnsignedShort(); for ($i = 0; $i < $this->attributeCount; $i++) { $attribute = new \PHPJava\Kernel\Attributes\AttributeInfo($this->reader); $attribute->setConstantPool($this->getConstantPool()); $attribute->execute(); $this->attributes[] = $attribute; } } public function getAccessFlag() { return $this->accessFlag; } public function getNameIndex() { return $this->nameIndex; } public function getDescriptorIndex() { return $this->descriptorIndex; } public function getAttributes() { return $this->attributes; } }