/* * EuroCarbDB, a framework for carbohydrate bioinformatics * * Copyright (c) 2006-2009, Eurocarb project, or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * A copy of this license accompanies this distribution in the file LICENSE.txt. * * This program 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 Lesser General Public License * for more details. * * Last commit: $Rev: 1210 $ by $Author: glycoslave $ on $Date:: 2009-06-12 #$ */ package org.eurocarbdb.MolecularFramework.util.traverser; import java.util.Iterator; import org.eurocarbdb.MolecularFramework.sugar.GlycoEdge; import org.eurocarbdb.MolecularFramework.sugar.GlycoGraph; import org.eurocarbdb.MolecularFramework.sugar.GlycoNode; import org.eurocarbdb.MolecularFramework.util.visitor.GlycoVisitor; import org.eurocarbdb.MolecularFramework.util.visitor.GlycoVisitorException; /** * Traverser which touches each residue of the tree only one time. * Traverse no linkages. * * @author rene * */ public class GlycoTraverserNodes extends GlycoTraverser { /** * @param a_objVisitor * @throws GlycoVisitorException */ public GlycoTraverserNodes(GlycoVisitor a_objVisitor) throws GlycoVisitorException { super(a_objVisitor); } @Override public void traverse(GlycoNode a_objResidue) throws GlycoVisitorException { a_objResidue.accept( this.m_objVisitor ); } @Override public void traverse(GlycoEdge a_objLinkage) throws GlycoVisitorException { // do nothing } /** * @see de.glycosciences.MolecularFrameWork.util.SugarTraverser#traverse(de.glycosciences.MolecularFrameWork.sugar.Sugar) */ @Override public void traverseGraph(GlycoGraph a_objSugar) throws GlycoVisitorException { Iterator<GlycoNode> t_objIterator = a_objSugar.getNodeIterator(); while ( t_objIterator.hasNext() ) { this.traverse(t_objIterator.next()); } } }