currency/src/org/apidesign/apifest08/currency/Convertor.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 01 Oct 2008 11:03:45 +0200
changeset 31 b94b999b7254
parent 3 81bafaac7336
permissions -rw-r--r--
Better to make the convertor public, that will prevent compile errors
     1 package org.apidesign.apifest08.currency;
     2 
     3 /** This is the skeleton class for your API. You need to make it public, so
     4  * it is accessible to your client code (currently in Task1Test.java) file.
     5  * <p>
     6  * Feel free to create additional classes or rename this one, just keep all
     7  * the API and its implementation in this package. Do not spread it outside
     8  * to other packages.
     9  */
    10 public final class Convertor {
    11 }