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

com.thaiopensource.relaxng.edit.CompositePattern Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
package com.thaiopensource.relaxng.edit;

import java.util.ArrayList;
import java.util.List;

public abstract class CompositePattern extends Pattern {
  private final List children = new ArrayList();
  public List getChildren() {
    return children;
  }
  public void childrenAccept(PatternVisitor visitor) {
    for (Pattern p : children)
      p.accept(visitor);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy