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