1 16 package com.buchuki.ensmer.object; 17 18 import javax.media.j3d.BranchGroup; 19 import javax.swing.event.*; 20 import com.buchuki.annotations.*; 21 22 36 public interface Frontend extends ChangeListener { 37 38 49 public BranchGroup getBranchGroup(); 50 51 60 public void stateChanged(ChangeEvent event); 61 62 69 @CallOnce 70 public void setBackend(Backend backend); 71 72 77 public Backend getBackend(); 78 79 84 public void destroy(); 85 } 86 87 | Popular Tags |