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

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

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 - 2024 Weber Informatics LLC | Privacy Policy