资 源 简 介
# What is gwt-exporter? #
The project is a GWT module which contains a generator capable of taking GWT classes and exporting them as ordinary Javascript APIs callable from hand-written Javascript, without having to deal with JSNI, and suitable for use in mashups.
Develop an application or library in GWT and use gwtexporter annotations to make classes and methods available from javascript.
The project includes a class to generate the Api documentation of the exported javascript.
# Documentation #
Take a look to the [Getting Started Guide](GettingStarted.md) to learn how to use it.
[Here](Articles.md) you have are a set of useful links you can read as well.
# gwt-exporter in action #
* In your java code modify your classes to implement the `Exportable` interface, and add some extra annotations
```
package com.example;
@Export() /* [1] */
public class Person implements /* [2] */ Exportable {
private String name;
public Person(String name) {
this.name = n