Revision: 12263
http://sourceforge.net/p/foray/code/12263
Author: victormote
Date: 2021-12-22 12:42:58 +0000 (Wed, 22 Dec 2021)
Log Message:
-----------
Conform to aXSL changes: Add property accessors previously considered unnecessary.
Modified Paths:
--------------
trunk/foray/foray-fotree/src/main/java/org/foray/fotree/FoObj.java
Modified: trunk/foray/foray-fotree/src/main/java/org/foray/fotree/FoObj.java
===================================================================
--- trunk/foray/foray-fotree/src/main/java/org/foray/fotree/FoObj.java 2021-12-22 11:45:21 UTC (rev 12262)
+++ trunk/foray/foray-fotree/src/main/java/org/foray/fotree/FoObj.java 2021-12-22 12:42:58 UTC (rev 12263)
@@ -105,6 +105,7 @@
import org.axsl.common.value.RetrievePosition;
import org.axsl.common.value.RetrievePositionWithinTable;
import org.axsl.common.value.RuleStyle;
+import org.axsl.common.value.ScaleOption;
import org.axsl.common.value.Scaling;
import org.axsl.common.value.ScalingMethod;
import org.axsl.common.value.ShadowEffect;
@@ -150,6 +151,7 @@
import java.awt.Color;
import java.awt.Shape;
+import java.math.BigDecimal;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
@@ -3743,4 +3745,16 @@
return null;
}
+ @Override
+ public BigDecimal traitIntrinsicScaleValue(final FoContext context) {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ @Override
+ public ScaleOption traitScaleOption(final FoContext context) {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|