1 package com.loribel.commons.abstraction;
2
3 /***
4 * Abstraction of a Object with name.
5 */
6 public interface GB_NameOwnerSet
7 extends
8 GB_NameOwner
9 {
10 void setName(
11 String a_name);
12 }