Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

(1) implement createRequestHandlers() to provide request handler implementations for specific event types from our view:

Infowarning

Currently we only have one GUI archetype, which is written as a Tabular View. (We need to create an additional (simpler) archetype for custom views.) So, for now, just note that the details below are subject to change...

Code Block
languagejava
@Override
protected Collection<RequestHandler> createRequestHandlers() {
    return ImmutableSet.of(
            new SampleDataRequestHandler(),
            new SampleDetailRequestHandler()
    );
}

...