Package jp.aonir.fuzzyxml.event

Examples of jp.aonir.fuzzyxml.event.FuzzyXMLModifyEvent


   * @param newText
   * @param offset
   * @param length
   */
  public void fireModifyEvent(String newText, int offset, int length) {
    FuzzyXMLModifyEvent evt = new FuzzyXMLModifyEvent(newText, offset, length);
    for (int i = 0; i < _listeners.size(); i++) {
      FuzzyXMLModifyListener listener = _listeners.get(i);
      listener.modified(evt);
    }
  }
View Full Code Here

TOP

Related Classes of jp.aonir.fuzzyxml.event.FuzzyXMLModifyEvent

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.