equal
deleted
inserted
replaced
31 /** |
31 /** |
32 * This class is intended to handle <object> element. |
32 * This class is intended to handle <object> element. |
33 * This element looks like <void> element, |
33 * This element looks like <void> element, |
34 * but its value is always used as an argument for element |
34 * but its value is always used as an argument for element |
35 * that contains this one. |
35 * that contains this one. |
36 * <p>The following atributes are supported: |
36 * <p>The following attributes are supported: |
37 * <dl> |
37 * <dl> |
38 * <dt>class |
38 * <dt>class |
39 * <dd>the type is used for static methods and fields |
39 * <dd>the type is used for static methods and fields |
40 * <dt>method |
40 * <dt>method |
41 * <dd>the method name |
41 * <dd>the method name |
62 private String property; |
62 private String property; |
63 private String method; |
63 private String method; |
64 |
64 |
65 /** |
65 /** |
66 * Parses attributes of the element. |
66 * Parses attributes of the element. |
67 * The following atributes are supported: |
67 * The following attributes are supported: |
68 * <dl> |
68 * <dl> |
69 * <dt>class |
69 * <dt>class |
70 * <dd>the type is used for static methods and fields |
70 * <dd>the type is used for static methods and fields |
71 * <dt>method |
71 * <dt>method |
72 * <dd>the method name |
72 * <dd>the method name |