You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by ye...@apache.org on 2007/04/18 16:22:56 UTC

svn commit: r530031 - in /jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model: Picture.java SimpleShape.java

Author: yegor
Date: Wed Apr 18 07:22:55 2007
New Revision: 530031

URL: http://svn.apache.org/viewvc?view=rev&rev=530031
Log:
cleaning the code before release

Modified:
    jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/Picture.java
    jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/SimpleShape.java

Modified: jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/Picture.java
URL: http://svn.apache.org/viewvc/jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/Picture.java?view=diff&rev=530031&r1=530030&r2=530031
==============================================================================
--- jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/Picture.java (original)
+++ jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/Picture.java Wed Apr 18 07:22:55 2007
@@ -33,13 +33,6 @@
 
 /**
  * Represents a picture in a PowerPoint document.
- * <p>
- * The information about an image in PowerPoint document is stored in
- * two places:
- *  <li> EscherBSE container in the Document keeps information about image
- *    type, image index to refer by slides etc.
- *  <li> "Pictures" OLE stream holds the actual data of the image.
- * </p>
  *
  * @author Yegor Kozlov
  */
@@ -134,6 +127,8 @@
 
     /**
      * Resize this picture to the default size.
+     * For PNG and JPEG resizes the image to 100%,
+     * for other types sets the default size of 200x200 pixels.  
      */
     public void setDefaultSize(){
         PictureData pict = getPictureData();

Modified: jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/SimpleShape.java
URL: http://svn.apache.org/viewvc/jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/SimpleShape.java?view=diff&rev=530031&r1=530030&r2=530031
==============================================================================
--- jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/SimpleShape.java (original)
+++ jakarta/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/model/SimpleShape.java Wed Apr 18 07:22:55 2007
@@ -179,10 +179,8 @@
 
     /**
      * The color used to fill this shape.
-     *
-     * @param color the background color
      */
-    public Color getFillColor(Color color){
+    public Color getFillColor(){
         EscherOptRecord opt = (EscherOptRecord)getEscherChild(_escherContainer, EscherOptRecord.RECORD_ID);
         EscherSimpleProperty p1 = (EscherSimpleProperty)getEscherProperty(opt, EscherProperties.FILL__FILLCOLOR);
         EscherSimpleProperty p2= (EscherSimpleProperty)getEscherProperty(opt, EscherProperties.FILL__NOFILLHITTEST);



---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/