You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NullConsole.java 645B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client;
  5. import java.util.Set;
  6. /**
  7. * Client side console implementation for non-debug mode that discards all
  8. * messages.
  9. *
  10. */
  11. public class NullConsole implements Console {
  12. public void dirUIDL(UIDL u) {
  13. }
  14. public void error(String msg) {
  15. }
  16. public void log(String msg) {
  17. }
  18. public void printObject(Object msg) {
  19. }
  20. public void printLayoutProblems(ValueMap meta,
  21. ApplicationConnection applicationConnection,
  22. Set<Paintable> zeroHeightComponents,
  23. Set<Paintable> zeroWidthComponents) {
  24. }
  25. }