View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Abstraction of a Object with state.
5    */
6   public interface GB_StateOwnerSet
7           extends
8               GB_StateOwner
9   {
10      void setState(
11              int a_state);
12  }