/* * Created by LuaView. * Copyright (c) 2017, Alibaba Group. All rights reserved. * * This source code is licensed under the MIT. * For the full copyright and license information,please view the LICENSE file in the root directory of this source tree. */ package com.taobao.luaview.userdata.ui; import com.taobao.luaview.view.LVCustomPanel; import org.luaj.vm2.Globals; import org.luaj.vm2.LuaValue; import org.luaj.vm2.Varargs; /** * 自定义容器类 * * @author song * @date 15/8/20 */ public class UDCustomPanel<T extends LVCustomPanel> extends UDViewGroup<T> { public UDCustomPanel(T view, Globals globals, LuaValue metatable, Varargs initParams) { super(view, globals, metatable, initParams); } }