Changeset 1438
- Timestamp:
- 02/24/11 03:13:54 (15 months ago)
- Location:
- trunk/docx4j/src/main/java/org/docx4j/wml
- Files:
-
- 5 edited
-
CTCustomXmlBlock.java (modified) (1 diff)
-
CTCustomXmlCell.java (modified) (2 diffs)
-
CTCustomXmlElement.java (modified) (1 diff)
-
CTCustomXmlRow.java (modified) (1 diff)
-
CTCustomXmlRun.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlBlock.java
r1437 r1438 192 192 } 193 193 194 /** 195 * @since 2.7 196 */ 194 197 public List<Object> getContent() { 195 if (egContentBlockContent == null) { 196 egContentBlockContent = new ArrayList<Object>(); 197 } 198 return this.egContentBlockContent; 198 return getEGContentBlockContent(); 199 199 } 200 200 -
trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlCell.java
r1437 r1438 183 183 * 184 184 */ 185 public List<Object> get ContentCellContent() {185 public List<Object> getEGContentCellContent() { 186 186 if (egContentCellContent == null) { 187 187 egContentCellContent = new ArrayList<Object>(); … … 190 190 } 191 191 192 /** 193 * @since 2.7 194 */ 192 195 public List<Object> getContent() { 193 if (egContentCellContent == null) { 194 egContentCellContent = new ArrayList<Object>(); 195 } 196 return this.egContentCellContent; 196 return getEGContentCellContent(); 197 197 } 198 198 -
trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlElement.java
r1437 r1438 7 7 /** 8 8 * @since 2.7 9 *10 9 */ 11 10 public interface CTCustomXmlElement extends Child { -
trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlRow.java
r1437 r1438 190 190 } 191 191 192 /** 193 * @since 2.7 194 */ 192 195 public List<Object> getContent() { 193 if (egContentRowContent == null) { 194 egContentRowContent = new ArrayList<Object>(); 195 } 196 return this.egContentRowContent; 196 return getEGContentRowContent(); 197 197 } 198 198 -
trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlRun.java
r1437 r1438 198 198 } 199 199 200 /** 201 * @since 2.7 202 */ 200 203 public List<Object> getContent() { 201 if (paragraphContent == null) { 202 paragraphContent = new ArrayList<Object>(); 203 } 204 return this.paragraphContent; 204 return getParagraphContent(); 205 205 } 206 206
Note: See TracChangeset
for help on using the changeset viewer.
