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

com.thaiopensource.xml.infer.AttributeDecl Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
package com.thaiopensource.xml.infer;

import com.thaiopensource.xml.util.Name;

public class AttributeDecl {
  private final Name datatype;
  private final boolean optional;

  public AttributeDecl(Name datatype, boolean optional) {
    this.datatype = datatype;
    this.optional = optional;
  }

  /**
   * @return null for anything
   */
  public Name getDatatype() {
    return datatype;
  }

  public boolean isOptional() {
    return optional;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy