Package simtools.shapes

Examples of simtools.shapes.ShapeListener


    }
   
    synchronized(listeners) {
      int n = listeners.size(); // only one call outside loop
      for (int i=0; i<n; ++i) {
        ShapeListener sl = (ShapeListener)listeners.get(i);
        if (sl!=null) sl.shapeChanged(AbstractShape.this, r);
      }
    }   
  }
View Full Code Here

TOP

Related Classes of simtools.shapes.ShapeListener

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.