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

com.github.uscexp.dotnotation.parser.attributepath.AttributePathParser Maven / Gradle / Ivy

/*
 * Copyright (C) 2014 - 2018 by haui - all rights reserved
 */
package com.github.uscexp.dotnotation.parser.attributepath;

import org.parboiled.Rule;

import com.github.uscexp.dotnotation.parser.attributedetail.AttributeDetailParser;

/**
 * @author haui
 *
 */
public class AttributePathParser extends AttributeDetailParser {

	public static final Object ATTRIBUTE_PATH_INTERPRETER_RESULT = "attributePathInterpreterResult";

	public Rule attributePath() {
		return Sequence(attribute(), ZeroOrMore(Sequence(dot(), attribute())), EOI);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy