1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction of a Object with state. 5 */ 6 public interface GB_StateOwner 7 { 8 int getState(); 9 }