json/src/main/java/net/java/html/json/Function.java
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 09 Dec 2015 21:39:13 +0100
changeset 1023 4f906bde3a2e
parent 901 4d20596b35bc
permissions -rw-r--r--
#257039: @Model.instance() to allow storage of private (and non-JSON like) state in a model
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2014 Oracle and/or its affiliates. All rights reserved.
     5  *
     6  * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
     7  * Other names may be trademarks of their respective owners.
     8  *
     9  * The contents of this file are subject to the terms of either the GNU
    10  * General Public License Version 2 only ("GPL") or the Common
    11  * Development and Distribution License("CDDL") (collectively, the
    12  * "License"). You may not use this file except in compliance with the
    13  * License. You can obtain a copy of the License at
    14  * http://www.netbeans.org/cddl-gplv2.html
    15  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    16  * specific language governing permissions and limitations under the
    17  * License.  When distributing the software, include this License Header
    18  * Notice in each file and include the License file at
    19  * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    20  * particular file as subject to the "Classpath" exception as provided
    21  * by Oracle in the GPL Version 2 section of the License file that
    22  * accompanied this code. If applicable, add the following below the
    23  * License Header, with the fields enclosed by brackets [] replaced by
    24  * your own identifying information:
    25  * "Portions Copyrighted [year] [name of copyright owner]"
    26  *
    27  * Contributor(s):
    28  *
    29  * The Original Software is NetBeans. The Initial Developer of the Original
    30  * Software is Oracle. Portions Copyright 2013-2014 Oracle. All Rights Reserved.
    31  *
    32  * If you wish your version of this file to be governed by only the CDDL
    33  * or only the GPL Version 2, indicate your decision by adding
    34  * "[Contributor] elects to include this software in this distribution
    35  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    36  * single choice of license, a recipient has the option to distribute
    37  * your version of this file under either the CDDL, the GPL Version 2 or
    38  * to extend the choice of license to its licensees as provided above.
    39  * However, if you add GPL Version 2 code and therefore, elected the GPL
    40  * Version 2 license, then the option applies only if the new code is
    41  * made subject to such option by the copyright holder.
    42  */
    43 package net.java.html.json;
    44 
    45 import java.io.PrintStream;
    46 import java.lang.annotation.ElementType;
    47 import java.lang.annotation.Retention;
    48 import java.lang.annotation.RetentionPolicy;
    49 import java.lang.annotation.Target;
    50 import org.netbeans.html.json.spi.FunctionBinding;
    51 
    52 /** Methods in class annotated by {@link Model} can be 
    53  * annotated by this annotation to signal that they should be available
    54  * as functions to users of the model classes. The method
    55  * should be non-private, static (unless {@link Model#instance() instance mode} is on)
    56  * and return <code>void</code>.
    57  * It may take few arguments. The first argument can be the type of
    58  * the associated model class, the other argument can be of any type,
    59  * but has to be named <code>data</code> - this one represents the
    60  * actual data the function was invoked on. Example:
    61  * <pre>
    62  * 
    63  * {@link Model @Model}(className="Names", properties={
    64  *   {@link Property @Property}(name = "selectedName", type=String.class),
    65  *   {@link Property @Property}(name = "names", type=String.class, array = true)
    66  * })
    67  * static class NamesModel {
    68  *   {@link Function @Function} static void <b>nameSelected</b>(Names myModel, String data) {
    69  *     myModel.setSelectedName(data);
    70  *   }
    71  * 
    72  *   static void initialize() {
    73  *     Names pageModel = new Names("---", "Jarda", "Pepa", "Honza", "Jirka", "Tomáš");
    74  *     pageModel.applyBindings();
    75  *   }
    76  * }
    77  * 
    78  * // associated <a target="_blank" href="http://knockoutjs.com/">Knockout</a> HTML page:
    79  * 
    80  * Selected name: &lt;span data-bind="text: selectedName"&gt;&lt;/span&gt;
    81  * &lt;ul data-bind="foreach: names"&gt;
    82  *   &lt;li&gt;
    83  *     &lt;a data-bind="text: $data, click: $root.nameSelected" href="#"&gt;&lt;/a&gt;
    84  *   &lt;/li&gt;
    85  * &lt;/ul&gt; 
    86  * </pre>
    87  * The above example would render:
    88  * <hr>
    89  * Selected name: <span>---</span>
    90  * <ul>
    91  *   <li>Jarda</li>
    92  *   <li>Pepa</li>
    93  *   <li>Honza</li>
    94  *   <li>Jirka</li>
    95  *   <li>Tomáš</li>
    96  * </ul>
    97  * <hr>
    98  * and after clicking on one of the names the <code>---</code> would be replaced
    99  * by selected name. 
   100  * Try <a target="_blank" href="http://dew.apidesign.org/dew/#8848505">this sample on-line</a>!
   101  * <p>
   102  * There can be additional arguments in the method which can extract information
   103  * from (typically event object) sent as a second parameter of the function
   104  * {@link FunctionBinding#call(java.lang.Object, java.lang.Object) dispatch method}.
   105  * Such arguments can be of primitive types (<code>int</code>, <code>double</code>
   106  * or {@link String}). Their names are used to extract values of appropriate
   107  * properties from the event object. The following function...
   108  * <pre>
   109  * {@link Function @Function} static void <b>meaningOfWorld</b>(Names myModel, String data, int answer) {
   110  *   {@link System}.out.{@link PrintStream#println(int) println}(answer);
   111  * }
   112  * // would print <b>42</b> if the dispatch method:
   113  * {@link FunctionBinding#call(java.lang.Object, java.lang.Object) meaningOfWorld.call}(model, json)
   114  * </pre>
   115  * is called with equivalent of <code>var json = { 'answer' : 42 }</code>.
   116  * 
   117  * @author Jaroslav Tulach
   118  */
   119 @Target(ElementType.METHOD)
   120 @Retention(RetentionPolicy.SOURCE)
   121 public @interface Function {
   122 }