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

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

The newest version!
package com.thaiopensource.xml.infer;

import com.thaiopensource.xml.util.Name;

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

public class Schema {
  private final Map elementDecls = new HashMap();
  private Particle start;
  private final Map prefixMap = new HashMap();

  public Map getElementDecls() {
    return elementDecls;
  }

  public Map getPrefixMap() {
    return prefixMap;
  }

  public ElementDecl getElementDecl(Name name) {
    return elementDecls.get(name);
  }

  public Particle getStart() {
    return start;
  }

  public void setStart(Particle start) {
    this.start = start;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy