Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Wiki Markup
{scrollbar}
  • Current version:
Code Block
	public interface ITime // already strange to have an empty interface
	{
	}


	public interface ITimeSpan : ITime
	{
		ITimeStamp Start    {get;}
		ITimeStamp End      {get;}
	}

	public interface ITimeStamp : ITime
	{
		double ModifiedJulianDay {get;}
	}

        public interface ILinkableComponent
        {
                ITimeSpan TimeHorizon { get; }
                void Update(ITime time);
        }

...