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

com.thaiopensource.relaxng.impl.MixedTextDerivFunction Maven / Gradle / Ivy

Go to download

A branch of Jing used by the Nu Html Checker. (Jing is a tool for validating documents against RelaxNG schemas.)

The newest version!
package com.thaiopensource.relaxng.impl;

class MixedTextDerivFunction extends EndAttributesFunction {

  MixedTextDerivFunction(ValidatorPatternBuilder builder) {
    super(builder);
  }

  public Object caseText(TextPattern p) {
    return p;
  }

  public Object caseGroup(GroupPattern p) {
    final Pattern p1 = p.getOperand1();
    final Pattern p2 = p.getOperand2();
    final Pattern q1 = memoApply(p1);
    Pattern tem = (q1 == p1) ? p : getPatternBuilder().makeGroup(q1, p2);
    if (!p1.isNullable())
      return tem;
    return getPatternBuilder().makeChoice(tem, memoApply(p2));
  }

  public Object caseInterleave(InterleavePattern p) {
    final Pattern p1 = p.getOperand1();
    final Pattern p2 = p.getOperand2();
    final Pattern q1 = memoApply(p1);
    final Pattern q2 = memoApply(p2);
    final Pattern i1 = (q1 == p1) ? p : getPatternBuilder().makeInterleave(q1, p2);
    final Pattern i2 = (q2 == p2) ? p : getPatternBuilder().makeInterleave(p1, q2);
    return getPatternBuilder().makeChoice(i1, i2);
  }

  public Object caseOneOrMore(OneOrMorePattern p) {
    return getPatternBuilder().makeGroup(memoApply(p.getOperand()),
					 getPatternBuilder().makeOptional(p));
  }

  public Object caseOther(Pattern p) {
    return getPatternBuilder().makeNotAllowed();
  }

  PatternMemo apply(PatternMemo memo) {
    return memo.mixedTextDeriv(this);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy