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

com.thaiopensource.relaxng.translate.util.NmtokenParam Maven / Gradle / Ivy

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

import com.thaiopensource.xml.util.Naming;

public abstract class NmtokenParam extends AbstractParam {
  public void set(String value) throws InvalidParamValueException {
    if (!Naming.isNmtoken(value))
      throw new ParamProcessor.LocalizedInvalidValueException("invalid_nmtoken");
    setNmtoken(value);
  }

  protected abstract void setNmtoken(String value) throws InvalidParamValueException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy