Versions Compared

Key

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

...

Code Block
java
java
titleSuggested approach using standard Java types
  public interface ITime {
      public double StampAsMJD();
  }	
  public interface ITimeSpan : ITime {
      public double DurationAsMJD();
  }	
Code Block
java
java
titleSuggestion 2.0

  public interface ITimeSet
  {
      IList<double> TimeStamps { get; set; }
      IList<double> Durations { get; set; }

      TimeZoneInfo TimeZone { get; set; }

      bool HasDurations { get; }
  }

5. OATC Procedures

6. www.OpenMI.org and wiki.OpenMI.org

...