![JAR search and dependency download from the Maven repository](/logo.png)
com.thaiopensource.xml.infer.BinaryParticle 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
Jing/Trang - tools for validating and translating RelaxNG
The newest version!
package com.thaiopensource.xml.infer;
public abstract class BinaryParticle extends Particle {
private final Particle p1;
private final Particle p2;
public BinaryParticle(Particle p1, Particle p2) {
this.p1 = p1;
this.p2 = p2;
}
public Particle getChild1() {
return p1;
}
public Particle getChild2() {
return p2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy