equal
deleted
inserted
replaced
40 * The inner elements specifies the arguments of the constructor. |
40 * The inner elements specifies the arguments of the constructor. |
41 * For example:<pre> |
41 * For example:<pre> |
42 * <new class="java.lang.Long"> |
42 * <new class="java.lang.Long"> |
43 * <string>10</string> |
43 * <string>10</string> |
44 * </new></pre> |
44 * </new></pre> |
45 * is equivalent to {@code new Long("10")} in Java code. |
45 * is equivalent to {@code Long.valueOf("10")} in Java code. |
46 * <p>The following attributes are supported: |
46 * <p>The following attributes are supported: |
47 * <dl> |
47 * <dl> |
48 * <dt>class |
48 * <dt>class |
49 * <dd>the type of object for instantiation |
49 * <dd>the type of object for instantiation |
50 * <dt>id |
50 * <dt>id |