phylotastic hackathon at NESCENT 120608
[jalview.git] / forester / java / src / org / forester / phylogeny / iterators / PostOrderStackObject.java
1 // $Id:
2 // FORESTER -- software libraries and applications
3 // for evolutionary biology research and applications.
4 //
5 // Copyright (C) 2008-2009 Christian M. Zmasek
6 // Copyright (C) 2008-2009 Burnham Institute for Medical Research
7 // All rights reserved
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU Lesser General Public
11 // License as published by the Free Software Foundation; either
12 // version 2.1 of the License, or (at your option) any later version.
13 //
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 // Lesser General Public License for more details.
18 //
19 // You should have received a copy of the GNU Lesser General Public
20 // License along with this library; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 //
23 // Contact: phylosoft @ gmail . com
24 // WWW: www.phylosoft.org/forester
25
26 package org.forester.phylogeny.iterators;
27
28 import org.forester.phylogeny.PhylogenyNode;
29
30 /*
31  * @author Christian M. Zmasek
32  * 
33  * @version 1.00 -- last modified: 06/15/00
34  */
35 public class PostOrderStackObject {
36
37     final private PhylogenyNode _node;
38     final private int           _phase;
39
40     /**
41      * Creates a new PostOrderStackObject object.
42      * 
43      * @param n
44      *            DOCUMENT ME!
45      * @param i
46      *            DOCUMENT ME!
47      */
48     public PostOrderStackObject( final PhylogenyNode n, final int i ) {
49         _node = n;
50         _phase = i;
51     }
52
53     /**
54      * DOCUMENT ME!
55      * 
56      * @return DOCUMENT ME!
57      */
58     public PhylogenyNode getNode() {
59         return _node;
60     }
61
62     /**
63      * DOCUMENT ME!
64      * 
65      * @return DOCUMENT ME!
66      */
67     public int getPhase() {
68         return _phase;
69     }
70 }