Package de.justi.yagw2api.wrapper

Examples of de.justi.yagw2api.wrapper.IWVWMatchScoresChangedEvent


    this.match = checkNotNull(match);
  }

  @Override
  protected void onChange(int deltaRed, int deltaGreen, int deltaBlue) {
    final IWVWMatchScoresChangedEvent event = WVW_MODEL_EVENT_FACTORY.newMatchScoresChangedEvent(this.createUnmodifiableReference(), deltaRed, deltaGreen, deltaBlue,
        this.match.createUnmodifiableReference());
    checkState(event != null);
    if (LOGGER.isTraceEnabled()) {
      LOGGER.trace("Going to post new " + event);
    }
View Full Code Here

TOP

Related Classes of de.justi.yagw2api.wrapper.IWVWMatchScoresChangedEvent

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.