1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction of a Object witch contains two values. 5 */ 6 public interface GB_TwoObjectsOwner 7 extends 8 GB_ObjectOwner 9 { 10 Object getObject2(); 11 }