org.apache.oodt.pcs.input
Class PGEGroup

java.lang.Object
  extended by org.apache.oodt.pcs.input.PGEGroup

public class PGEGroup
extends Object

A PGEGroup is a named set of named PGEVectors, PGEScalars and PGEMatrixs.

Version:
$Revision$
Author:
mattmann

Constructor Summary
PGEGroup(String name)
           Constructs a new PGEGroup with the given name
 
Method Summary
 void addMatrix(PGEMatrix matrix)
           
 void addScalar(PGEScalar scalar)
           
 void addVector(PGEVector vector)
           
 PGEGroup getGroup(String name)
           
 Map<String,PGEGroup> getGroups()
           
 PGEMatrix getMatrix(String name)
           
 Map<String,PGEMatrix> getMatrixs()
           
 String getName()
           
 int getNumGroups()
           
 int getNumMatrixs()
           
 int getNumScalars()
           
 int getNumVectors()
           
 PGEScalar getScalar(String name)
           
 Map<String,PGEScalar> getScalars()
           
 PGEVector getVector(String name)
           
 Map<String,PGEVector> getVectors()
           
 void setGroups(Map<String,PGEGroup> groups)
           
 void setMatrixs(Map<String,PGEMatrix> matrixs)
           
 void setName(String name)
           
 void setScalars(Map<String,PGEScalar> scalars)
           
 void setVectors(Map<String,PGEVector> vectors)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PGEGroup

public PGEGroup(String name)

Constructs a new PGEGroup with the given name

Method Detail

getName

public String getName()
Returns:
the name

setName

public void setName(String name)
Parameters:
name - the name to set

getScalars

public Map<String,PGEScalar> getScalars()
Returns:
the scalars

setScalars

public void setScalars(Map<String,PGEScalar> scalars)
Parameters:
scalars - the scalars to set

getVectors

public Map<String,PGEVector> getVectors()
Returns:
the vectors

setVectors

public void setVectors(Map<String,PGEVector> vectors)
Parameters:
vectors - the vectors to set

getMatrixs

public Map<String,PGEMatrix> getMatrixs()
Returns:
the matrixs

setMatrixs

public void setMatrixs(Map<String,PGEMatrix> matrixs)
Parameters:
matrixs - the matrixs to set

getGroups

public Map<String,PGEGroup> getGroups()
Returns:
the groups

setGroups

public void setGroups(Map<String,PGEGroup> groups)
Parameters:
groups - the groups to set

addScalar

public void addScalar(PGEScalar scalar)

addVector

public void addVector(PGEVector vector)

addMatrix

public void addMatrix(PGEMatrix matrix)

getScalar

public PGEScalar getScalar(String name)

getVector

public PGEVector getVector(String name)

getMatrix

public PGEMatrix getMatrix(String name)

getGroup

public PGEGroup getGroup(String name)

getNumScalars

public int getNumScalars()

getNumVectors

public int getNumVectors()

getNumMatrixs

public int getNumMatrixs()

getNumGroups

public int getNumGroups()


Copyright © 1999-2011 Apache OODT. All Rights Reserved.