source: trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlElement.java @ 1438

Revision 1438, 1.4 KB checked in by jharrop, 15 months ago (diff)

Modifications to Richard's patch

Line 
1package org.docx4j.wml;
2
3import java.util.List;
4
5import org.jvnet.jaxb2_commons.ppp.Child;
6
7/**
8 * @since 2.7
9 */
10public interface CTCustomXmlElement extends Child {
11
12    /**
13     * Gets the value of the customXmlPr property.
14     *
15     * @return
16     *     possible object is
17     *     {@link CTCustomXmlPr }
18     *     
19     */
20    public CTCustomXmlPr getCustomXmlPr();
21   
22    /**
23     * Sets the value of the customXmlPr property.
24     *
25     * @param value
26     *     allowed object is
27     *     {@link CTCustomXmlPr }
28     *     
29     */
30    public void setCustomXmlPr(CTCustomXmlPr value);
31   
32    /**
33     * Gets the value of the uri property.
34     *
35     * @return
36     *     possible object is
37     *     {@link String }
38     *     
39     */
40    public String getUri();
41
42    /**
43     * Sets the value of the uri property.
44     *
45     * @param value
46     *     allowed object is
47     *     {@link String }
48     *     
49     */
50    public void setUri(String value);
51
52    /**
53     * Gets the value of the element property.
54     *
55     * @return
56     *     possible object is
57     *     {@link String }
58     *     
59     */
60    public String getElement();
61
62    /**
63     * Sets the value of the element property.
64     *
65     * @param value
66     *     allowed object is
67     *     {@link String }
68     *     
69     */
70    public void setElement(String value);
71   
72   
73    public List<Object> getContent();
74}
Note: See TracBrowser for help on using the repository browser.