public abstract class DataVisitor
extends java.lang.Object
| Constructor and Description |
|---|
DataVisitor() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
visit(FlatField field)
Visit a VisAD FlatField.
|
boolean |
visit(TupleIface tuple)
Visit a VisAD Tuple.
|
public boolean visit(TupleIface tuple) throws BadFormException, VisADException, java.rmi.RemoteException
tuple - The VisAD Tuple being visited.BadFormException - The Tuple doesn't fit the data model
used by the visitor.VisADException - Core VisAD problem (probably couldn't
create a VisAD object).java.rmi.RemoteExceptionDataNodetuple is non-null.tuple has been visited.public boolean visit(FlatField field) throws BadFormException, VisADException, java.rmi.RemoteException
field - The VisAD FlatField being visited.BadFormException - The Tuple doesn't fit the data model
used by the visitor.VisADException - Core VisAD problem (probably couldn't
create a VisAD object).java.rmi.RemoteExceptionDataNodefield is non-null.field has been visited.