jaroslav@921: /** jaroslav@921: * Back 2 Browser Bytecode Translator jaroslav@921: * Copyright (C) 2012 Jaroslav Tulach jaroslav@921: * jaroslav@921: * This program is free software: you can redistribute it and/or modify jaroslav@921: * it under the terms of the GNU General Public License as published by jaroslav@921: * the Free Software Foundation, version 2 of the License. jaroslav@921: * jaroslav@921: * This program is distributed in the hope that it will be useful, jaroslav@921: * but WITHOUT ANY WARRANTY; without even the implied warranty of jaroslav@921: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jaroslav@921: * GNU General Public License for more details. jaroslav@921: * jaroslav@921: * You should have received a copy of the GNU General Public License jaroslav@921: * along with this program. Look for COPYING file in the top folder. jaroslav@921: * If not, see http://opensource.org/licenses/GPL-2.0. jaroslav@921: */ jaroslav@921: package org.apidesign.bck2brwsr.htmlpage; jaroslav@921: jaroslav@921: import org.apidesign.bck2brwsr.htmlpage.api.Model; jaroslav@921: import org.apidesign.bck2brwsr.htmlpage.api.Property; jaroslav@921: jaroslav@921: /** jaroslav@921: * jaroslav@921: * @author Jaroslav Tulach jaroslav@921: */ jaroslav@921: @Model(className = "People", properties = { jaroslav@921: @Property(array = true, name = "info", type = PersonImpl.class), jaroslav@921: @Property(array = true, name = "nicknames", type = String.class), jaroslav@921: @Property(array = true, name = "age", type = int.class), jaroslav@921: }) jaroslav@921: public class PeopleImpl { jaroslav@921: jaroslav@921: }