Interface Deletable


  • public interface Deletable
    Base interface providing the contract semantics that any deletable type must fulfil. In order for a type to fulfil the deletable interface, the delete() method must be implemented.
    Author:
    Paulo Zenida - Linkare TI
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean delete()
      In this method, one should remove any associations between this deletable type and any other associated types.
    • Method Detail

      • delete

        boolean delete()
        In this method, one should remove any associations between this deletable type and any other associated types.
        Returns:
        returns true if the type has been deleted. Returns false otherwise.