Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Current version:

Code Block
java
java
    public interface IArgument : IDescribable
    {
        string Key { get; }
        string Value { get; set; }
        bool ReadOnly { get; }
    }

Proposed change to cover types:

Code Block
java
java
    public interface IArgumentIDescribable
   : IDescribable{
        string Caption { get; set; }
        string KeyDescription { get; set; }
    }
    
    public interface IValueDefinition : IDescribable
    {
        Type ValueType { get; }
        bool DescribesSameAs(IValueDefinition otherValueDefinition);
    }

    public interface IArgument : IValueDefinition
    {
         object Value { get; set; }
         bool ReadOnly { get; }
    }

5. Release 2.0 plan

...