Package state.classes

Examples of state.classes.Cursor


  private Cursor cursor;

  public DrawingBoard() {
   
    cursor = new Cursor(this);
   
    this.setPreferredSize(new Dimension(1000, 1000));
        this.addMouseMotionListener(this); // Listen to mouse moves, drags.
        this.addMouseListener(this);
   
View Full Code Here

TOP

Related Classes of state.classes.Cursor

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.