source: applications/nimpad/trunk/lib/HatenaSyntax/Tree/INode.php @ 1490

SVN
Revision 1490, 457 bytes checked in by anatoo, 10 months ago (diff)

0.2ブランチのリビジョン1489,1488の変更をtrunkに取り込んだ

Line 
1<?php
2/**
3 * @package HatenaSyntax
4 * @author anatoo<anatoo@nequal.jp>
5 * @license http://www.opensource.org/licenses/mit-license.php MIT License
6 * @version $Id: INode.php 1159 2009-09-06 09:43:29Z anatoo $
7 */
8
9interface HatenaSyntax_Tree_INode
10{
11    function hasValue();
12    function getValue();
13    function hasChildren();
14   
15    // HatenaSyntax_Tree_INodeの配列を返す
16    function getChildren();
17   
18    function getType();
19}
Note: See TracBrowser for help on using the repository browser.