Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/10 13:14:56 (14 years ago)
Author:
swagner
Message:

Worked on ReadOnlyView property (#969).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3/IStringConvertibleValue.cs

    r3317 r3370  
    2121
    2222using System;
     23using HeuristicLab.Common;
    2324
    2425namespace HeuristicLab.Data {
    25   public interface IStringConvertibleValue {
    26     bool ReadOnlyView { get; set; }
    27 
     26  public interface IStringConvertibleValue : IContent {
    2827    bool Validate(string value, out string errorMessage);
    2928    string GetValue();
    3029    bool SetValue(string value);
    3130
    32     event EventHandler ReadOnlyViewChanged;
    3331    event EventHandler ValueChanged;
    3432  }
Note: See TracChangeset for help on using the changeset viewer.