1 package android.accessibilityservice; 2 3 /** 4 * Interface given to a BrailleDisplayController to talk to a BrailleDisplayConnection 5 * in system_server. 6 * 7 * @hide 8 */ 9 interface IBrailleDisplayConnection { disconnect()10 oneway void disconnect(); write(in byte[] output)11 oneway void write(in byte[] output); 12 }