getNodeId() 공개 메소드

Returns the nodeid
public getNodeId ( ) : string
리턴 string
예제 #1
0
 public function testGetBrowseNode()
 {
     $nodeLookup = new BrowseNodeLookup();
     $this->assertEquals(null, $nodeLookup->getNodeId());
     $nodeLookup->setNodeId(290060);
     $this->assertEquals(290060, $nodeLookup->getNodeId());
 }