using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HeuristicLab.OKB.ParameterTable { public interface IPrimitiveParameter : IParameterAccessor { bool IsValid(string textValue); new string Value { set; } } }