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 ); } }