1 20 package org.apache.directory.ldapstudio.proxy.view.wrappers; 21 22 23 import java.util.List ; 24 25 import org.eclipse.swt.graphics.Image; 26 27 28 34 public interface IWrapper 35 { 36 42 public String getText(); 43 44 45 51 public Image getImage(); 52 53 54 60 public List <IWrapper> getChildren(); 61 62 63 69 public boolean hasChildren(); 70 71 72 79 public IWrapper getParent(); 80 } 81 | Popular Tags |