View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Abstraction of a Object with name.
5    */
6   public interface GB_NameOwner
7   {
8       String getName();
9   }