public static interface

RequestFactoryInterfaceValidator.Loader

com.google.gwt.requestfactory.server.RequestFactoryInterfaceValidator.Loader
Known Indirect Subclasses

Class Overview

Abstracts the mechanism by which class files are loaded.

Summary

Public Methods
abstract boolean exists(String resource)
Returns true if the specified resource can be loaded.
abstract InputStream getResourceAsStream(String resource)
Returns an InputStream to access the specified resource, or null if no such resource exists.

Public Methods

public abstract boolean exists (String resource)

Returns true if the specified resource can be loaded.

Parameters
resource a resource name (e.g. com/example/Foo.class)

public abstract InputStream getResourceAsStream (String resource)

Returns an InputStream to access the specified resource, or null if no such resource exists.

Parameters
resource a resource name (e.g. com/example/Foo.class)