Author: mvw Date: 2008-01-15 10:29:54-0800 New Revision: 14046 Modified: trunk/src_new/org/argouml/persistence/PGML.tee
Log: Part of the fix for issue 4951: Make saving a FigText as PGML also write the size of the box and the justification. Modified: trunk/src_new/org/argouml/persistence/PGML.tee Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/persistence/PGML.tee?view=diff&rev=14046&p1=trunk/src_new/org/argouml/persistence/PGML.tee&p2=trunk/src_new/org/argouml/persistence/PGML.tee&r1=14045&r2=14046 ============================================================================== --- trunk/src_new/org/argouml/persistence/PGML.tee (original) +++ trunk/src_new/org/argouml/persistence/PGML.tee 2008-01-15 10:29:54-0800 @@ -1,23 +1,38 @@ <?xml version="1.0" encoding="UTF-8"?> - <!DOCTYPE TemplateSet [ - <!ELEMENT TemplateSet (macro | template)* > - <!ELEMENT macro (#PCDATA)> - <!ATTLIST macro name ID #REQUIRED> - <!ELEMENT template (#PCDATA)> - <!ATTLIST template class CDATA #REQUIRED> - ]> <!-- This is PGML.tee, for GEF Diagrams to generate Precision Graphics --> - <!-- Markup Language files. "tee" = Template with Embedded Expressions. --> - +<!-- +Copyright (c) 1996-2008 The Regents of the University of California. All +Rights Reserved. Permission to use, copy, modify, and distribute this +software and its documentation without fee, and without a written +agreement is hereby granted, provided that the above copyright notice +and this paragraph appear in all copies. This software program and +documentation are copyrighted by The Regents of the University of +California. The software program and documentation are supplied "AS +IS", without any accompanying services from The Regents. The Regents +does not warrant that the operation of the program will be +uninterrupted or error-free. The end-user understands that the program +was developed for research purposes and is advised not to rely +exclusively on the program for any reason. IN NO EVENT SHALL THE +UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, +SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF +THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE +PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF +CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, +UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +--> <TemplateSet> @@ -198,13 +213,14 @@ x="<ocl>self.x.intValue</ocl>" y="<ocl>self.y.intValue</ocl>" - + width="<ocl>self.width.intValue</ocl>" + height="<ocl>self.height.intValue</ocl>" FILL_AND_STROKE font="<ocl>self.fontFamily</ocl>" textsize="<ocl>self.fontSize</ocl>" - + justification="<ocl>self.justificationByName</ocl>" ><ocl>self.text</ocl></text> ]]> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
