PHP 클래스 Trismegiste\Mondrian\Graph\Edge

파일 보기 프로젝트 열기: trismegiste/mondrian

보호된 프로퍼티들

프로퍼티 타입 설명
$from
$to

공개 메소드들

메소드 설명
__construct ( Vertex $from, Vertex $to ) Since edge has one source vertex and one target vertex it is builded with two vertices in its constructor
getSource ( ) : Vertex Get the source vertex
getTarget ( ) : Vertex Get the target vertex

메소드 상세

__construct() 공개 메소드

Since edge has one source vertex and one target vertex it is builded with two vertices in its constructor
public __construct ( Vertex $from, Vertex $to )
$from Vertex
$to Vertex

getSource() 공개 메소드

Get the source vertex
public getSource ( ) : Vertex
리턴 Vertex

getTarget() 공개 메소드

Get the target vertex
public getTarget ( ) : Vertex
리턴 Vertex

프로퍼티 상세

$from 보호되어 있는 프로퍼티

protected $from

$to 보호되어 있는 프로퍼티

protected $to