Package barsuift.simLife.tree

Source Code of barsuift.simLife.tree.TreeBranchState

/**
* barsuift-simlife is a life simulator program
*
* Copyright (C) 2010 Cyrille GACHOT
*
* This file is part of barsuift-simlife.
*
* barsuift-simlife is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* barsuift-simlife is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with barsuift-simlife. If not, see
* <http://www.gnu.org/licenses/>.
*/
package barsuift.simLife.tree;

import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlRootElement;

import barsuift.simLife.State;
import barsuift.simLife.j3d.tree.TreeBranch3DState;

@XmlRootElement
public class TreeBranchState implements State {

    private int age;

    private BigDecimal energy;

    private BigDecimal freeEnergy;

    private List<TreeBranchPartState> branchPartStates;

    private TreeBranch3DState branch3DState;

    public TreeBranchState() {
        super();
        this.branchPartStates = new ArrayList<TreeBranchPartState>();
        this.age = 0;
        this.energy = new BigDecimal(0);
        this.freeEnergy = new BigDecimal(0);
        this.branch3DState = new TreeBranch3DState();
    }

    public TreeBranchState(int age, BigDecimal energy, BigDecimal freeEnergy,
            List<TreeBranchPartState> branchPartStates, TreeBranch3DState branch3DState) {
        super();
        this.age = age;
        this.energy = energy;
        this.freeEnergy = freeEnergy;
        this.branchPartStates = branchPartStates;
        this.branch3DState = branch3DState;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public BigDecimal getEnergy() {
        return energy;
    }

    public void setEnergy(BigDecimal energy) {
        this.energy = energy;
    }

    public BigDecimal getFreeEnergy() {
        return freeEnergy;
    }

    public void setFreeEnergy(BigDecimal freeEnergy) {
        this.freeEnergy = freeEnergy;
    }

    public List<TreeBranchPartState> getBranchPartStates() {
        return branchPartStates;
    }

    public void setBranchPartStates(List<TreeBranchPartState> branchPartStates) {
        this.branchPartStates = branchPartStates;
    }

    public TreeBranch3DState getBranch3DState() {
        return branch3DState;
    }

    public void setBranch3DState(TreeBranch3DState branch3dState) {
        branch3DState = branch3dState;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((branch3DState == null) ? 0 : branch3DState.hashCode());
        result = prime * result + age;
        result = prime * result + ((energy == null) ? 0 : energy.hashCode());
        result = prime * result + ((freeEnergy == null) ? 0 : freeEnergy.hashCode());
        result = prime * result + ((branchPartStates == null) ? 0 : branchPartStates.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        TreeBranchState other = (TreeBranchState) obj;
        if (branch3DState == null) {
            if (other.branch3DState != null)
                return false;
        } else
            if (!branch3DState.equals(other.branch3DState))
                return false;
        if (age != other.age)
            return false;
        if (energy == null) {
            if (other.energy != null)
                return false;
        } else
            if (!energy.equals(other.energy))
                return false;
        if (freeEnergy == null) {
            if (other.freeEnergy != null)
                return false;
        } else
            if (!freeEnergy.equals(other.freeEnergy))
                return false;
        if (branchPartStates == null) {
            if (other.branchPartStates != null)
                return false;
        } else
            if (!branchPartStates.equals(other.branchPartStates))
                return false;
        return true;
    }

    @Override
    public String toString() {
        return "TreeBranchState [branch3DState=" + branch3DState + ", age=" + age + ", energy=" + energy
                + ", freeEnergy=" + freeEnergy + ", branchPartStates=" + branchPartStates + "]";
    }

}
TOP

Related Classes of barsuift.simLife.tree.TreeBranchState

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.