Examples of markInvalid()


Examples of net.sf.launch4j.binding.Binding.markInvalid()

  }

  public void warn(InvariantViolationException e) {
    Binding b = e.getBinding();
    if (b != null) {
      b.markInvalid();
    }
    warn(e.getMessage());
    if (b != null) {
      e.getBinding().markValid();
    }
View Full Code Here

Examples of net.sf.launch4j.binding.Binding.markInvalid()

  }

  public void warn(InvariantViolationException e) {
    Binding b = e.getBinding();
    if (b != null) {
      b.markInvalid();
    }
    warn(e.getMessage());
    if (b != null) {
      e.getBinding().markValid();
    }
View Full Code Here

Examples of wecui.event.CUIEvent.markInvalid()

        CUIEvent cuievent = new CUIEvent(this.controller, type, args.split("[|]"));
        this.controller.getEventManager().callEvent(cuievent);

        if (!cuievent.isHandled()) {
            cuievent.markInvalid("Invalid message type. Update WorldEditCUI to the latest version.");
        }
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.