/* * Copyright 2013 Guidewire Software, Inc. */ package gw.internal.gosu.parser; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; /** */ class TypeRefInvocationHandler implements InvocationHandler { public Object invoke( Object proxy, Method method, Object[] args ) throws Throwable { return null; } }