All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cobraparser.html.gui.DocumentNotification Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.cobraparser.html.gui;

import org.cobraparser.html.domimpl.NodeImpl;

class DocumentNotification {
  public static final int LOOK = 0;
  public static final int POSITION = 1;
  public static final int SIZE = 2;
  public static final int GENERIC = 3;

  public final int type;
  public final NodeImpl node;

  public DocumentNotification(final int type, final NodeImpl node) {
    this.type = type;
    this.node = node;
  }

  @Override
  public String toString() {
    return "DocumentNotification[type=" + this.type + ",node=" + this.node + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy