1 package com.loribel.commons.abstraction; 2 3 import java.awt.*; 4 5 /*** 6 * Interface for Editor witch use Dialog. 7 */ 8 public interface GB_DialogEditor 9 { 10 boolean showDialog( 11 Component a_parent, 12 String a_title, 13 Object a_value); 14 15 Object getValue(); 16 }