1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction of a refresh object. 5 */ 6 public interface GB_Refreshable 7 { 8 void refresh(); 9 10 }