/** {@inheritDoc} */ @Override public void setProperty(Object description, Object property) { logger.debug("Setting new property: " + description + " -> " + property); super.setProperty(description, property); }
/** {@inheritDoc} */ @Override public void setProperties(Map<Object, Object> properties) { logger.debug("Setting new properties..."); super.setProperties(properties); }
/** {@inheritDoc} */ @Override public void setCharge(Integer charge) { logger.debug("Setting the charge to: ", charge); super.setCharge(charge); }
/** {@inheritDoc} */ @Override public void removeProperty(Object description) { logger.debug("Removing property: " + description); super.removeProperty(description); }
/** {@inheritDoc} */ @Override public void removeIsotope(IIsotope isotope) { logger.debug("Removing this isotope: ", isotope); super.removeIsotope(isotope); }
/** {@inheritDoc} */ @Override public void removeAllIsotopes() { logger.debug("Removing all isotopes..."); super.removeAllIsotopes(); }