Example usage for org.w3c.dom Element subclass-usage

List of usage examples for org.w3c.dom Element subclass-usage

Introduction

In this page you can find the example usage for org.w3c.dom Element subclass-usage.

Usage

From source file hoot.services.models.osm.Node.java

/**
 * Represents the model for an OSM node
 */
public class Node extends Element {
    private static final Logger logger = LoggerFactory.getLogger(Node.class);

From source file hoot.services.models.osm.Way.java

/**
 * Represents the model for an OSM way
 */
public class Way extends Element {
    private static final Logger logger = LoggerFactory.getLogger(Way.class);
    private static final QCurrentWayNodes currentWayNodes = QCurrentWayNodes.currentWayNodes;

From source file hoot.services.models.osm.Relation.java

/**
 * Represents the model for an OSM relation
 */
public class Relation extends Element {
    private static final Logger log = LoggerFactory.getLogger(Relation.class);
    private int maxRecordBatchSize = -1;