package hush.dv.api;
  
  public class item extends handler {
  
  public native void bind(handler h);
  
  public native void configure(String opts);
  
  public boolean valid() { 
  	int b = isvalid();
  	if (b==0) return false; else return true;
  	}
  
  private native int isvalid();
  
  public native void tag(String s);
  public native String tags();
  
  public native void move(int x, int y);
  public native void del();
  
  public native String coords();
  public native String bbox();
  };
  

slide: The item class