com.github.uscexp.blockformatpropertyfile.parser.AstElementTreeNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BlockFormatPropertyFile Show documentation
Show all versions of BlockFormatPropertyFile Show documentation
Property file in java style block format.
/*
* Copyright (C) 2014 by haui - all rights reserved
*/
package com.github.uscexp.blockformatpropertyfile.parser;
import com.github.uscexp.blockformatpropertyfile.PropertyFile;
import com.github.uscexp.blockformatpropertyfile.PropertyStruct;
import com.github.uscexp.blockformatpropertyfile.interpreter.PropertyFileInterpreter;
import com.github.uscexp.grappa.extension.util.IStack;
/**
* Command implementation for the PropertyFileParser
rule: element.
*/
public class AstElementTreeNode extends AstBaseCommandTreeNode {
public AstElementTreeNode(String rule, String value) {
super(rule, value);
}
@Override
protected void interpretAfterChilds(Long id)
throws Exception {
super.interpretAfterChilds(id);
IStack
© 2015 - 2025 Weber Informatics LLC | Privacy Policy