1 package org.apache.ws.jaxme.js.pattern; 2 3 import org.apache.ws.jaxme.js.JavaSource; 4 import org.apache.ws.jaxme.js.JavaSourceFactory; 5 6 7 /** The <code>Reflector</code> obtains informations on a certain 8 * class by converting it into an instance of {@link JavaSource}. 9 */ 10 public interface Reflector { 11 /** Returns the converted information. 12 */ 13 public JavaSource getJavaSource(JavaSourceFactory pFactory) throws Exception; 14 } 15