Return-Path: X-Original-To: apmail-poi-commits-archive@minotaur.apache.org Delivered-To: apmail-poi-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CC128D4E8 for ; Thu, 20 Dec 2012 13:22:19 +0000 (UTC) Received: (qmail 76993 invoked by uid 500); 20 Dec 2012 13:22:19 -0000 Delivered-To: apmail-poi-commits-archive@poi.apache.org Received: (qmail 76951 invoked by uid 500); 20 Dec 2012 13:22:19 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 76934 invoked by uid 99); 20 Dec 2012 13:22:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Dec 2012 13:22:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Dec 2012 13:22:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7B6E02388AA9; Thu, 20 Dec 2012 13:21:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1424453 [6/41] - in /poi/site/publish/apidocs/org/apache/poi/xslf: ./ class-use/ extractor/ extractor/class-use/ model/ model/class-use/ model/geom/ model/geom/class-use/ usermodel/ usermodel/class-use/ util/ util/class-use/ Date: Thu, 20 Dec 2012 13:21:02 -0000 To: commits@poi.apache.org From: yegor@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121220132114.7B6E02388AA9@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IAdjustableShape.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IAdjustableShape.html?rev=1424453&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IAdjustableShape.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IAdjustableShape.html Thu Dec 20 13:20:57 2012 @@ -0,0 +1,220 @@ + + + + + + +IAdjustableShape (POI API Documentation) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xslf.model.geom +
+Interface IAdjustableShape

+
+
+
public interface IAdjustableShape
+ + +

+A bridge to the consumer application. + + To get a shape geometry one needs to pass shape bounds and adjust values. +

+ +

+

+
Author:
+
Yegor Kozlov
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ GuidegetAdjustValue(java.lang.String name) + +
+           
+  +

+ + + + + + + + +
+Method Detail
+ +

+getAdjustValue

+
+Guide getAdjustValue(java.lang.String name)
+
+
+
Parameters:
name - name of a adjust value, e.g. adj1 +
Returns:
adjust guide defined in the shape or null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2012 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IAdjustableShape.html ------------------------------------------------------------------------------ svn:executable = * Added: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IfElseExpression.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IfElseExpression.html?rev=1424453&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IfElseExpression.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IfElseExpression.html Thu Dec 20 13:20:57 2012 @@ -0,0 +1,241 @@ + + + + + + +IfElseExpression (POI API Documentation) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xslf.model.geom +
+Class IfElseExpression

+
+java.lang.Object
+  extended by org.apache.poi.xslf.model.geom.IfElseExpression
+
+
+
All Implemented Interfaces:
Expression
+
+
+
+
public class IfElseExpression
extends java.lang.Object
implements Expression
+ + +

+If Else Formula: +

+ Arguments: 3 (fmla="?: x y z") + Usage: "?: x y z" = if (x > 0), then y = value of this guide, + else z = value of this guide +

+

+ +

+

+
Author:
+
Yegor Kozlov
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ doubleevaluate(Context ctx) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+evaluate

+
+public double evaluate(Context ctx)
+
+
+
Specified by:
evaluate in interface Expression
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2012 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/IfElseExpression.html ------------------------------------------------------------------------------ svn:executable = * Added: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LineToCommand.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LineToCommand.html?rev=1424453&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LineToCommand.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LineToCommand.html Thu Dec 20 13:20:57 2012 @@ -0,0 +1,241 @@ + + + + + + +LineToCommand (POI API Documentation) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xslf.model.geom +
+Class LineToCommand

+
+java.lang.Object
+  extended by org.apache.poi.xslf.model.geom.LineToCommand
+
+
+
All Implemented Interfaces:
PathCommand
+
+
+
+
public class LineToCommand
extends java.lang.Object
implements PathCommand
+ + +

+Date: 10/25/11 +

+ +

+

+
Author:
+
Yegor Kozlov
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ voidexecute(java.awt.geom.GeneralPath path, + Context ctx) + +
+          Execute the command an append a segment to the specified path
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+execute

+
+public void execute(java.awt.geom.GeneralPath path,
+                    Context ctx)
+
+
Description copied from interface: PathCommand
+
Execute the command an append a segment to the specified path +

+

+
Specified by:
execute in interface PathCommand
+
+
+
Parameters:
path - the path to append the result to
ctx - the context to lookup variables
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2012 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LineToCommand.html ------------------------------------------------------------------------------ svn:executable = * Added: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LiteralValueExpression.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LiteralValueExpression.html?rev=1424453&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LiteralValueExpression.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LiteralValueExpression.html Thu Dec 20 13:20:57 2012 @@ -0,0 +1,236 @@ + + + + + + +LiteralValueExpression (POI API Documentation) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xslf.model.geom +
+Class LiteralValueExpression

+
+java.lang.Object
+  extended by org.apache.poi.xslf.model.geom.LiteralValueExpression
+
+
+
All Implemented Interfaces:
Expression
+
+
+
+
public class LiteralValueExpression
extends java.lang.Object
implements Expression
+ + +

+Date: 10/24/11 +

+ +

+

+
Author:
+
Yegor Kozlov
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ doubleevaluate(Context ctx) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+evaluate

+
+public double evaluate(Context ctx)
+
+
+
Specified by:
evaluate in interface Expression
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2012 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/LiteralValueExpression.html ------------------------------------------------------------------------------ svn:executable = * Added: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MaxExpression.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MaxExpression.html?rev=1424453&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MaxExpression.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MaxExpression.html Thu Dec 20 13:20:57 2012 @@ -0,0 +1,236 @@ + + + + + + +MaxExpression (POI API Documentation) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xslf.model.geom +
+Class MaxExpression

+
+java.lang.Object
+  extended by org.apache.poi.xslf.model.geom.MaxExpression
+
+
+
All Implemented Interfaces:
Expression
+
+
+
+
public class MaxExpression
extends java.lang.Object
implements Expression
+ + +

+Maximum Value Formula +

+ +

+

+
Author:
+
Yegor Kozlov
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ doubleevaluate(Context ctx) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+evaluate

+
+public double evaluate(Context ctx)
+
+
+
Specified by:
evaluate in interface Expression
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2012 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MaxExpression.html ------------------------------------------------------------------------------ svn:executable = * Added: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MinExpression.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MinExpression.html?rev=1424453&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MinExpression.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MinExpression.html Thu Dec 20 13:20:57 2012 @@ -0,0 +1,236 @@ + + + + + + +MinExpression (POI API Documentation) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xslf.model.geom +
+Class MinExpression

+
+java.lang.Object
+  extended by org.apache.poi.xslf.model.geom.MinExpression
+
+
+
All Implemented Interfaces:
Expression
+
+
+
+
public class MinExpression
extends java.lang.Object
implements Expression
+ + +

+Minimum Value Formula +

+ +

+

+
Author:
+
Yegor Kozlov
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ doubleevaluate(Context ctx) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+evaluate

+
+public double evaluate(Context ctx)
+
+
+
Specified by:
evaluate in interface Expression
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2012 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/MinExpression.html ------------------------------------------------------------------------------ svn:executable = * Added: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/ModExpression.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/ModExpression.html?rev=1424453&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/ModExpression.html (added) +++ poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/ModExpression.html Thu Dec 20 13:20:57 2012 @@ -0,0 +1,240 @@ + + + + + + +ModExpression (POI API Documentation) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.poi.xslf.model.geom +
+Class ModExpression

+
+java.lang.Object
+  extended by org.apache.poi.xslf.model.geom.ModExpression
+
+
+
All Implemented Interfaces:
Expression
+
+
+
+
public class ModExpression
extends java.lang.Object
implements Expression
+ + +

+Modulo Formula: +

+ Arguments: 3 (fmla="mod x y z") + Usage: "mod x y z" = sqrt(x^2 + b^2 + c^2) = value of this guide +

+

+ +

+

+
Author:
+
Yegor Kozlov
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ doubleevaluate(Context ctx) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+evaluate

+
+public double evaluate(Context ctx)
+
+
+
Specified by:
evaluate in interface Expression
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + Copyright 2012 The Apache Software Foundation or + its licensors, as applicable. + + + Propchange: poi/site/publish/apidocs/org/apache/poi/xslf/model/geom/ModExpression.html ------------------------------------------------------------------------------ svn:executable = * --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org