295296297298299300301302303304305
} else { final Context context = begin(); try { return unmarshaller.unmarshal(input, declaredType); } finally { context.finish(); } } } /**
315316317318319320321322323324325
} else { final Context context = begin(); try { return unmarshaller.unmarshal(input); } finally { context.finish(); } } } /**
335336337338339340341342343344345
353354355356357358359360361362363
} final Context context = begin(); try { return unmarshaller.unmarshal(input); } finally { context.finish(); } } /** * Delegates the unmarshalling to the wrapped unmarshaller.
370371372373374375376377378379380
} final Context context = begin(); try { return unmarshaller.unmarshal(input, declaredType); } finally { context.finish(); } } /** * Delegates the unmarshalling to the wrapped unmarshaller.
389390391392393394395396397398399
409410411412413414415416417418419