/* Generated By:JJTree: Do not edit this line. OCommandLineOption.java Version 4.3 */ /* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=true,NODE_PREFIX=O,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */ package com.orientechnologies.orient.core.sql.parser; import java.util.Map; public class OCommandLineOption extends SimpleNode { protected OIdentifier name; public OCommandLineOption(int id) { super(id); } public OCommandLineOption(OrientSql p, int id) { super(p, id); } @Override public void toString(Map<Object, Object> params, StringBuilder builder) { builder.append("-"); name.toString(params, builder); } } /* JavaCC - OriginalChecksum=7fcb8de8a1f99a2737aac85933d074d9 (do not edit this line) */