currency/src/org/apidesign/apifest08/currency/Convertor.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 22 Sep 2008 18:19:25 +0200
changeset 3 81bafaac7336
parent 0 e0003d2fb0c2
child 31 b94b999b7254
permissions -rw-r--r--
Explaining that the API and its impl shall be kept in one package.
Also stressing that the Convertor shall be "pre-made" in the API, no subclassing needed to create its implementation.
jtulach@0
     1
package org.apidesign.apifest08.currency;
jtulach@0
     2
jaroslav@3
     3
/** This is the skeleton class for your API. You need to make it public, so
jaroslav@3
     4
 * it is accessible to your client code (currently in Task1Test.java) file.
jaroslav@3
     5
 * <p>
jaroslav@3
     6
 * Feel free to create additional classes or rename this one, just keep all
jaroslav@3
     7
 * the API and its implementation in this package. Do not spread it outside
jaroslav@3
     8
 * to other packages.
jtulach@0
     9
 */
jtulach@0
    10
class Convertor {
jtulach@0
    11
}