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

io.github.mmm.marshall.tvm.xml.impl.TvmXmlState Maven / Gradle / Ivy

There is a newer version: 0.9.10
Show newest version
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package io.github.mmm.marshall.tvm.xml.impl;

import java.util.Objects;

import io.github.mmm.marshall.spi.StructuredNodeType;
import io.github.mmm.marshall.spi.StructuredNode;

/**
 * Simple node of a stack.
 */
class TvmXmlState extends StructuredNode {

  final String tag;

  /**
   * The constructor.
   *
   * @param parent the parent node.
   * @param tag the closing tag.
   */
  TvmXmlState(TvmXmlState parent, StructuredNodeType type, String tag) {

    super(parent, type);
    Objects.requireNonNull(tag);
    this.tag = tag;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy