jaroslav@491: /** jaroslav@491: * Back 2 Browser Bytecode Translator jaroslav@491: * Copyright (C) 2012 Jaroslav Tulach jaroslav@491: * jaroslav@491: * This program is free software: you can redistribute it and/or modify jaroslav@491: * it under the terms of the GNU General Public License as published by jaroslav@491: * the Free Software Foundation, version 2 of the License. jaroslav@491: * jaroslav@491: * This program is distributed in the hope that it will be useful, jaroslav@491: * but WITHOUT ANY WARRANTY; without even the implied warranty of jaroslav@491: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jaroslav@491: * GNU General Public License for more details. jaroslav@491: * jaroslav@491: * You should have received a copy of the GNU General Public License jaroslav@491: * along with this program. Look for COPYING file in the top folder. jaroslav@491: * If not, see http://opensource.org/licenses/GPL-2.0. jaroslav@491: */ jaroslav@491: package org.apidesign.bck2brwsr.htmlpage.api; jaroslav@491: jaroslav@491: import java.lang.annotation.ElementType; jaroslav@491: import java.lang.annotation.Retention; jaroslav@491: import java.lang.annotation.RetentionPolicy; jaroslav@491: import java.lang.annotation.Target; jaroslav@491: jaroslav@1023: /** jaroslav@1023: * @deprecated Replaced by new {@link net.java.html.json.ComputedProperty net.java.html.json} API. jaroslav@491: * @author Jaroslav Tulach jaroslav@491: */ jaroslav@1023: @Deprecated jaroslav@491: @Retention(RetentionPolicy.SOURCE) jaroslav@491: @Target(ElementType.METHOD) jaroslav@491: public @interface ComputedProperty { jaroslav@491: }