Searched defs:inMemoryType (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIUserConversion.java163 private JDefinedClass generateAdapter(JCodeModel cm, String parseMethod, String printMethod, JClass inMemoryType) { argument
179 adapter._extends(cm.ref(XmlAdapter.class).narrow(String.class).narrow(inMemoryType));
181 JMethod unmarshal = adapter.method(JMod.PUBLIC, inMemoryType, "unmarshal");
191 inv = JExpr._new(inMemoryType).arg($value);
200 inv = inMemoryType.staticInvoke(parseMethod).arg($value);
209 $value = marshal.param(inMemoryType,"value");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIConversion.java137 private JType inMemoryType; field in class:BIConversion.User
139 public User(Locator loc, String parseMethod, String printMethod, JType inMemoryType) { argument
143 this.inMemoryType = inMemoryType;
160 if(inMemoryType==null)
161 inMemoryType = TypeUtil.getType(cm,type,Ring.get(ErrorReceiver.class),getLocation());
190 JClass bim = inMemoryType.boxify();
245 JType t = inMemoryType.unboxify();
258 if(inMemoryType.unboxify().isPrimitive()) {
270 if(inMemoryType
[all...]

Completed in 36 milliseconds