forked from php-java/php-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_LineNumberTable.php
More file actions
37 lines (32 loc) · 772 Bytes
/
_LineNumberTable.php
File metadata and controls
37 lines (32 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace PHPJava\Kernel\Structures;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Utilities\BinaryTool;
class _LineNumberTable implements StructureInterface
{
use \PHPJava\Kernel\Core\BinaryReader;
use \PHPJava\Kernel\Core\ConstantPool;
private $startPc = null;
private $lineNumber = null;
public function execute(): void
{
}
public function setStartPc($startPc)
{
$this->startPc = $startPc;
return $this;
}
public function setLineNumber($lineNumber)
{
$this->lineNumber = $lineNumber;
return $this;
}
public function getStartPc()
{
return $this->startPc;
}
public function getLineNumber()
{
return $this->lineNumber;
}
}