Cytoscape 2.6.2 (c) 2006,2007 ISB, MSKCC, UCSD

cytoscape.data.annotation
Class FlattenIntVectors

java.lang.Object
  extended by cytoscape.data.annotation.FlattenIntVectors

public class FlattenIntVectors
extends Object

given a vector which nests other vectors, each resolving eventually to a list of Integers, flatten it out into a simple 1-level-deep vector of Integer vectors. for example: ((1 2 3 (4 5 (6))), (7 (8) (9 10 11 (12)))) becomes ((1 2 3 4 5 6), (7 8 9 10 11 12))


Constructor Summary
FlattenIntVectors(Vector v)
          Creates a new FlattenIntVectors object.
 
Method Summary
 Vector getResult()
          DOCUMENT ME!
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FlattenIntVectors

public FlattenIntVectors(Vector v)
Creates a new FlattenIntVectors object.

Parameters:
v - DOCUMENT ME!
Method Detail

getResult

public Vector getResult()
DOCUMENT ME!

Returns:
DOCUMENT ME!

www.cytoscape.org