task2/solution14/src/org/apidesign/apifest08/currency/CurrencyRate.java
author japod@localhost
Wed, 08 Oct 2008 12:51:52 +0200
changeset 49 de033c457bed
permissions -rw-r--r--
adding solution14 for task2
japod@49
     1
package org.apidesign.apifest08.currency;
japod@49
     2
japod@49
     3
japod@49
     4
public interface CurrencyRate {
japod@49
     5
    public String getCurrency1();
japod@49
     6
    public String getCurrency2();
japod@49
     7
    public Rate getRate();
japod@49
     8
}