1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface for Object that can be updated. 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_Updatable 9 { 10 11 /*** 12 * Returns true if success. 13 */ 14 boolean update(); 15 16 }