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

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

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


import com.thaiopensource.xml.util.Name;

import java.util.Map;
import java.util.HashMap;

public class ElementDecl {
  private Particle contentModel;
  private Name datatype;
  private final Map attributeDecls = new HashMap();

  public Map getAttributeDecls() {
    return attributeDecls;
  }

  public Particle getContentModel() {
    return contentModel;
  }

  public void setContentModel(Particle contentModel) {
    this.datatype = null;
    this.contentModel = contentModel;
  }

  public Name getDatatype() {
    return datatype;
  }

  public void setDatatype(Name datatype) {
    this.contentModel = null;
    this.datatype = datatype;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy