Example #1
0
    /**
     * Remove a set of ConstantMaps
     *
     * @param constantMaps ConstantMaps to remove
     * @throws RemoteException Java RMI error
     * @throws VisADException problem creating VisAD object
     */
    public final synchronized void remove(ConstantMaps constantMaps)
        throws VisADException, RemoteException {

      constantMaps.removePropertyChangeListener(ConstantMaps.CONSTANT_MAP, listener);
      maps.remove(constantMaps);

      changed = true;

      updater.update();
    }
Example #2
0
    /**
     * @param constantMaps
     * @throws BadMappingException A ConstantMap for the DisplayRealType already exists.
     * @throws RemoteException
     * @throws VisADException
     */
    public final synchronized void add(ConstantMaps constantMaps)
        throws BadMappingException, VisADException, RemoteException {

      maps.add(constantMaps);
      constantMaps.addPropertyChangeListener(ConstantMaps.CONSTANT_MAP, listener);

      changed = true;

      updater.update();
    }