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

org.unlaxer.vocabulary.ebnf.part1.SpaceCharacter Maven / Gradle / Ivy

There is a newer version: 1.1.26
Show newest version
package org.unlaxer.vocabulary.ebnf.part1;

import org.unlaxer.Name;
import org.unlaxer.parser.elementary.MappedSingleCharacterParser;

/**
 * (* see 7.6 *) space character = ’ ’;
 *
 */
public class SpaceCharacter extends MappedSingleCharacterParser{

	private static final long serialVersionUID = 3528119497296884497L;

	public SpaceCharacter() {
		this(null);
	}

	public SpaceCharacter(Name name){
		super(name , ' ');
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy