task3/solution14/src/org/apidesign/apifest08/currency/CurrencyRate.java
changeset 54 1b300c79f4ce
parent 50 03c5c5dc94e7
     1.1 --- a/task3/solution14/src/org/apidesign/apifest08/currency/CurrencyRate.java	Wed Oct 08 13:24:54 2008 +0200
     1.2 +++ b/task3/solution14/src/org/apidesign/apifest08/currency/CurrencyRate.java	Fri Oct 10 22:02:31 2008 +0200
     1.3 @@ -1,6 +1,9 @@
     1.4  package org.apidesign.apifest08.currency;
     1.5  
     1.6 -
     1.7 +/**
     1.8 + * This is interface for creating currency rates. The rate can be static or can change in time.
     1.9 + * Implement this interface to inform the Convertor about the actual exchange rate between two currencies.
    1.10 + */
    1.11  public interface CurrencyRate {
    1.12      public String getCurrency1();
    1.13      public String getCurrency2();