/** * Removes an adapted, VisAD data object. * * @param dataAdapter The adapted, VisAD data object to be removed from this instance. * @throws VisADException VisAD failure. * @throws RemoteException Java RMI failure. */ public final void remove(DataAdapter dataAdapter) throws VisADException, RemoteException { datumTable.setObsolete(dataAdapter); }
/** * Adds an adapted, VisAD data object. * * @param dataAdapter The adapted data object to be added to this instance. * @throws VisADException VisAD failure. * @throws RemoteException Java RMI failure. */ public final void add(DataAdapter dataAdapter) throws VisADException, RemoteException { datumTable.add(dataAdapter); }