Changeset 1531
- Timestamp:
- 06/05/11 03:17:09 (12 months ago)
- Location:
- trunk/docx4j
- Files:
-
- 4 edited
-
src/main/java/org/opendope/SmartArt/dataHierarchy/ListItem.java (modified) (4 diffs)
-
src/main/java/org/opendope/SmartArt/dataHierarchy/ObjectFactory.java (modified) (4 diffs)
-
src/main/java/org/opendope/SmartArt/dataHierarchy/SmartArtDataHierarchy.java (modified) (5 diffs)
-
xsd/OpenDoPE/SmartArtDataHierarchy.xsd (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/docx4j/src/main/java/org/opendope/SmartArt/dataHierarchy/ListItem.java
r1527 r1531 22 22 * <element ref="{http://opendope.org/SmartArt/DataHierarchy}textBody"/> 23 23 * <element ref="{http://opendope.org/SmartArt/DataHierarchy}sibTransBody" minOccurs="0"/> 24 * <element ref="{http://opendope.org/SmartArt/DataHierarchy}image " minOccurs="0"/>24 * <element ref="{http://opendope.org/SmartArt/DataHierarchy}imageRef" minOccurs="0"/> 25 25 * <element ref="{http://opendope.org/SmartArt/DataHierarchy}list" minOccurs="0"/> 26 26 * </sequence> … … 37 37 "textBody", 38 38 "sibTransBody", 39 "image ",39 "imageRef", 40 40 "list" 41 41 }) … … 46 46 protected TextBody textBody; 47 47 protected SibTransBody sibTransBody; 48 protected Image image;48 protected ImageRef imageRef; 49 49 protected List list; 50 50 @XmlAttribute(required = true) … … 100 100 101 101 /** 102 * Gets the value of the image property.102 * Gets the value of the imageRef property. 103 103 * 104 104 * @return 105 105 * possible object is 106 * {@link Image }106 * {@link ImageRef } 107 107 * 108 108 */ 109 public Image getImage() {110 return image ;109 public ImageRef getImageRef() { 110 return imageRef; 111 111 } 112 112 113 113 /** 114 * Sets the value of the image property.114 * Sets the value of the imageRef property. 115 115 * 116 116 * @param value 117 117 * allowed object is 118 * {@link Image }118 * {@link ImageRef } 119 119 * 120 120 */ 121 public void setImage (Imagevalue) {122 this.image = value;121 public void setImageRef(ImageRef value) { 122 this.imageRef = value; 123 123 } 124 124 -
trunk/docx4j/src/main/java/org/opendope/SmartArt/dataHierarchy/ObjectFactory.java
r1527 r1531 35 35 36 36 /** 37 * Create an instance of {@link TextBody } 38 * 39 */ 40 public TextBody createTextBody() { 41 return new TextBody(); 42 } 43 44 /** 37 45 * Create an instance of {@link SmartArtDataHierarchy.Images } 38 46 * … … 43 51 44 52 /** 45 * Create an instance of {@link List}53 * Create an instance of {@link SmartArtDataHierarchy } 46 54 * 47 55 */ 48 public List createList() { 49 return new List(); 56 public SmartArtDataHierarchy createSmartArtDataHierarchy() { 57 return new SmartArtDataHierarchy(); 58 } 59 60 /** 61 * Create an instance of {@link SibTransBody } 62 * 63 */ 64 public SibTransBody createSibTransBody() { 65 return new SibTransBody(); 66 } 67 68 /** 69 * Create an instance of {@link ImageRef } 70 * 71 */ 72 public ImageRef createImageRef() { 73 return new ImageRef(); 50 74 } 51 75 … … 67 91 68 92 /** 69 * Create an instance of {@link TextBody}93 * Create an instance of {@link List } 70 94 * 71 95 */ 72 public TextBody createTextBody() { 73 return new TextBody(); 74 } 75 76 /** 77 * Create an instance of {@link ListItem } 78 * 79 */ 80 public ListItem createListItem() { 81 return new ListItem(); 82 } 83 84 /** 85 * Create an instance of {@link org.opendope.SmartArt.dataHierarchy.Image } 86 * 87 */ 88 public org.opendope.SmartArt.dataHierarchy.Image createImage() { 89 return new org.opendope.SmartArt.dataHierarchy.Image(); 96 public List createList() { 97 return new List(); 90 98 } 91 99 … … 99 107 100 108 /** 101 * Create an instance of {@link SibTransBody}109 * Create an instance of {@link ListItem } 102 110 * 103 111 */ 104 public SibTransBody createSibTransBody() { 105 return new SibTransBody(); 106 } 107 108 /** 109 * Create an instance of {@link SmartArtDataHierarchy } 110 * 111 */ 112 public SmartArtDataHierarchy createSmartArtDataHierarchy() { 113 return new SmartArtDataHierarchy(); 112 public ListItem createListItem() { 113 return new ListItem(); 114 114 } 115 115 -
trunk/docx4j/src/main/java/org/opendope/SmartArt/dataHierarchy/SmartArtDataHierarchy.java
r1526 r1531 44 44 * </simpleType> 45 45 * </attribute> 46 * <attribute name="custLinFactNeighborX" type="{http://www.w3.org/2001/XMLSchema}int" />47 * <attribute name="custLinFactNeighborY" type="{http://www.w3.org/2001/XMLSchema}int" />48 * <attribute name="custScaleY" type="{http://www.w3.org/2001/XMLSchema}int" />49 * <attribute name="custScaleX" type="{http://www.w3.org/2001/XMLSchema}int" />50 46 * </extension> 51 47 * </simpleContent> … … 226 222 * </simpleType> 227 223 * </attribute> 228 * <attribute name="custLinFactNeighborX" type="{http://www.w3.org/2001/XMLSchema}int" />229 * <attribute name="custLinFactNeighborY" type="{http://www.w3.org/2001/XMLSchema}int" />230 * <attribute name="custScaleY" type="{http://www.w3.org/2001/XMLSchema}int" />231 * <attribute name="custScaleX" type="{http://www.w3.org/2001/XMLSchema}int" />232 224 * </extension> 233 225 * </simpleContent> … … 301 293 * </simpleType> 302 294 * </attribute> 303 * <attribute name="custLinFactNeighborX" type="{http://www.w3.org/2001/XMLSchema}int" />304 * <attribute name="custLinFactNeighborY" type="{http://www.w3.org/2001/XMLSchema}int" />305 * <attribute name="custScaleY" type="{http://www.w3.org/2001/XMLSchema}int" />306 * <attribute name="custScaleX" type="{http://www.w3.org/2001/XMLSchema}int" />307 295 * </extension> 308 296 * </simpleContent> … … 324 312 @XmlAttribute 325 313 protected String contentType; 326 @XmlAttribute327 protected Integer custLinFactNeighborX;328 @XmlAttribute329 protected Integer custLinFactNeighborY;330 @XmlAttribute331 protected Integer custScaleY;332 @XmlAttribute333 protected Integer custScaleX;334 314 335 315 /** … … 401 381 public void setContentType(String value) { 402 382 this.contentType = value; 403 }404 405 /**406 * Gets the value of the custLinFactNeighborX property.407 *408 * @return409 * possible object is410 * {@link Integer }411 *412 */413 public Integer getCustLinFactNeighborX() {414 return custLinFactNeighborX;415 }416 417 /**418 * Sets the value of the custLinFactNeighborX property.419 *420 * @param value421 * allowed object is422 * {@link Integer }423 *424 */425 public void setCustLinFactNeighborX(Integer value) {426 this.custLinFactNeighborX = value;427 }428 429 /**430 * Gets the value of the custLinFactNeighborY property.431 *432 * @return433 * possible object is434 * {@link Integer }435 *436 */437 public Integer getCustLinFactNeighborY() {438 return custLinFactNeighborY;439 }440 441 /**442 * Sets the value of the custLinFactNeighborY property.443 *444 * @param value445 * allowed object is446 * {@link Integer }447 *448 */449 public void setCustLinFactNeighborY(Integer value) {450 this.custLinFactNeighborY = value;451 }452 453 /**454 * Gets the value of the custScaleY property.455 *456 * @return457 * possible object is458 * {@link Integer }459 *460 */461 public Integer getCustScaleY() {462 return custScaleY;463 }464 465 /**466 * Sets the value of the custScaleY property.467 *468 * @param value469 * allowed object is470 * {@link Integer }471 *472 */473 public void setCustScaleY(Integer value) {474 this.custScaleY = value;475 }476 477 /**478 * Gets the value of the custScaleX property.479 *480 * @return481 * possible object is482 * {@link Integer }483 *484 */485 public Integer getCustScaleX() {486 return custScaleX;487 }488 489 /**490 * Sets the value of the custScaleX property.491 *492 * @param value493 * allowed object is494 * {@link Integer }495 *496 */497 public void setCustScaleX(Integer value) {498 this.custScaleX = value;499 383 } 500 384 -
trunk/docx4j/xsd/OpenDoPE/SmartArtDataHierarchy.xsd
r1527 r1531 59 59 </xsd:simpleType> 60 60 </xsd:attribute> 61 <!-- dgm:pt/dgm:prSet[@presName='rootPict'] optional settings -->62 <xsd:attribute name="custLinFactNeighborX" type="xsd:int" use="optional"/>63 <xsd:attribute name="custLinFactNeighborY" type="xsd:int" use="optional"/>64 <xsd:attribute name="custScaleY" type="xsd:int" use="optional"/>65 <xsd:attribute name="custScaleX" type="xsd:int" use="optional"/>66 61 </xsd:extension> 67 62 </xsd:simpleContent> … … 122 117 <xsd:element ref="dh:textBody" /> 123 118 <xsd:element ref="dh:sibTransBody" minOccurs="0" maxOccurs="1" /> 124 <xsd:element ref="dh:image " minOccurs="0" maxOccurs="1"/>119 <xsd:element ref="dh:imageRef" minOccurs="0" maxOccurs="1"/> 125 120 <xsd:element ref="dh:list" minOccurs="0" maxOccurs="1" /> 126 121 </xsd:sequence> … … 153 148 <xsd:element name="p" type="xsd:string" /> 154 149 155 <xsd:element name="image ">150 <xsd:element name="imageRef"> 156 151 <xsd:complexType> 157 152 <xsd:attribute name="contentRef" type="xsd:string" use="optional" /> 153 <!-- dgm:pt/dgm:prSet[@presName='rootPict'] optional settings --> 154 <xsd:attribute name="custLinFactNeighborX" type="xsd:int" use="optional"/> 155 <xsd:attribute name="custLinFactNeighborY" type="xsd:int" use="optional"/> 156 <xsd:attribute name="custScaleY" type="xsd:int" use="optional"/> 157 <xsd:attribute name="custScaleX" type="xsd:int" use="optional"/> 158 158 </xsd:complexType> 159 159 </xsd:element>
Note: See TracChangeset
for help on using the changeset viewer.
