Antlr3.Tool.Grammar.SetDecisionOption C# (CSharp) Method

SetDecisionOption() public method

public SetDecisionOption ( int decision, string name, object value ) : void
decision int
name string
value object
return void
        public virtual void SetDecisionOption( int decision, string name, object value )
        {
            Decision d = getDecision( decision );
            if ( d != null )
            {
                if ( d.options == null )
                {
                    d.options = new Dictionary<object, object>();
                }
                d.options.put( name, value );
            }
        }
Grammar