public static class

RequestFactoryInterfaceValidator.ClassLoaderLoader

extends Object
implements RequestFactoryInterfaceValidator.Loader
java.lang.Object
   ↳ com.google.gwt.requestfactory.server.RequestFactoryInterfaceValidator.ClassLoaderLoader

Class Overview

An implementation of RequestFactoryInterfaceValidator.ClassLoaderLoader that uses a ClassLoader to retrieve the class files.

Summary

Public Constructors
RequestFactoryInterfaceValidator.ClassLoaderLoader(ClassLoader loader)
Public Methods
boolean exists(String resource)
Returns true if the specified resource can be loaded.
InputStream getResourceAsStream(String resource)
Returns an InputStream to access the specified resource, or null if no such resource exists.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.gwt.requestfactory.server.RequestFactoryInterfaceValidator.Loader

Public Constructors

public RequestFactoryInterfaceValidator.ClassLoaderLoader (ClassLoader loader)

Public Methods

public 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 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)