Package org.beryl.gui

Examples of org.beryl.gui.View


 
  protected void fireModelEvent(ModelChangeEvent event) throws GUIException {
    if (views != null) {
      /* Update all views */
      for (Iterator i=views.iterator(); i.hasNext(); ) {
        View view = (View) i.next();
        /* Dont send events back to their source */
        if (view != event.getSource()) {
          view.modelChanged(event);
        }
      }
    }

    if (modelChangeListeners != null) {
View Full Code Here

TOP

Related Classes of org.beryl.gui.View

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.