source:
branches/OKB/HeuristicLab.OKB.ParameterTable/IPrimitiveParameter.cs
@
7554
Last change on this file since 7554 was 4311, checked in by swagner, 14 years ago | |
---|---|
File size: 283 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace HeuristicLab.OKB.ParameterTable { |
7 | |
8 | public interface IPrimitiveParameter : IParameterAccessor { |
9 | bool IsValid(string textValue); |
10 | new string Value { set; } |
11 | } |
12 | |
13 | } |
Note: See TracBrowser
for help on using the repository browser.