1 package org.apache.ws.jaxme.js;2 3 4 /** This instance specifies an Java source object, which5 * has a type.6 */7 public interface TypedValue {8 /** Returns the objects type.9 */10 public JavaQName getType();11 }12