com.thaiopensource.relaxng.output.xsd.basic.ParticleVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Trang, a multi-format schema converter based on RELAX NG.
package com.thaiopensource.relaxng.output.xsd.basic;
public interface ParticleVisitor {
T visitElement(Element p);
T visitWildcardElement(WildcardElement p);
T visitRepeat(ParticleRepeat p);
T visitSequence(ParticleSequence p);
T visitChoice(ParticleChoice p);
T visitAll(ParticleAll p);
T visitGroupRef(GroupRef p);
}