Changeset 1504
- Timestamp:
- 05/20/11 04:50:02 (12 months ago)
- Location:
- trunk/docx4j/src/main/java/org/docx4j/wml
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docx4j/src/main/java/org/docx4j/wml/Ftr.java
r925 r1504 63 63 @XmlRootElement(name = "ftr") 64 64 public class Ftr 65 implements Child 65 implements Child, ContentAccessor 66 66 { 67 67 … … 153 153 * 154 154 */ 155 @Deprecated 155 156 public List<Object> getEGBlockLevelElts() { 156 157 if (egBlockLevelElts == null) { … … 160 161 } 161 162 163 public List<Object> getContent() { 164 if (egBlockLevelElts == null) { 165 egBlockLevelElts = new ArrayList<Object>(); 166 } 167 return this.egBlockLevelElts; 168 } 169 162 170 /** 163 171 * Gets the parent object in the object tree representing the unmarshalled xml document. -
trunk/docx4j/src/main/java/org/docx4j/wml/Hdr.java
r925 r1504 63 63 @XmlRootElement(name = "hdr") 64 64 public class Hdr 65 implements Child 65 implements Child, ContentAccessor 66 66 { 67 67 … … 99 99 }) 100 100 protected List<Object> egBlockLevelElts; 101 102 101 103 @XmlTransient 102 104 private Object parent; … … 153 155 * 154 156 */ 157 @Deprecated 155 158 public List<Object> getEGBlockLevelElts() { 156 159 if (egBlockLevelElts == null) { … … 161 164 162 165 /** 166 * Get the content of this element. 167 * @since 2.7 168 */ 169 public List<Object> getContent() { 170 if (egBlockLevelElts == null) { 171 egBlockLevelElts = new ArrayList<Object>(); 172 } 173 return this.egBlockLevelElts; 174 } 175 176 /** 163 177 * Gets the parent object in the object tree representing the unmarshalled xml document. 164 178 *
Note: See TracChangeset
for help on using the changeset viewer.
