Package de.nordakademie.cerca

Examples of de.nordakademie.cerca.MyLCD


   * @throws InterruptedException
   */
  public static void main(String[] args) throws InterruptedException {
    // implementing customized behaviour
    NativeLCD lcd = NativeLCD.getInstance();
    lcd.setBehaviour(new MyLCD());
   
    NativeButton btn = NativeButton.getInstance();
    MyButton myBtn = new MyButton();
    btn.setBehaviour(myBtn);
   
View Full Code Here

TOP

Related Classes of de.nordakademie.cerca.MyLCD

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.