package org.opengroupware.jope.foundation;

/*
 * WOClassLookupContext
 * 
 * Since we use "short" names in various places of JOPE (eg WOHyperlink),
 * we need to have some "context" to resolve class names against.
 * 
 * Currently the resource manager of the application is usually used for
 * that
 */
public interface NSClassLookupContext {

  public abstract Class lookupClass(String _name);

}
