Revision: 7256
Author: victormote
Date: 2006-05-25 15:13:23 -0700 (Thu, 25 May 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7256&view=rev
Log Message:
-----------
Use new axsl methods for bpd computations.
Modified Paths:
--------------
trunk/foray/foray-areatree/src/java/org/foray/area/Area.java
Modified: trunk/foray/foray-areatree/src/java/org/foray/area/Area.java
===================================================================
--- trunk/foray/foray-areatree/src/java/org/foray/area/Area.java 2006-05-25 19:18:36 UTC (rev 7255)
+++ trunk/foray/foray-areatree/src/java/org/foray/area/Area.java 2006-05-25 22:13:23 UTC (rev 7256)
@@ -113,22 +113,6 @@
return traitGeneratedBy().getName();
}
- public int heightNearestGenByBlockLevelFO() {
- org.axsl.areaW.Area nearest = nearestGeneratedByBlockLevelFO();
- if (nearest == null) {
- return Constants.DIMENSION_AUTO;
- }
- return nearest.crBPD();
- }
-
- public int widthNearestGenByBlockLevelFO() {
- org.axsl.areaW.Area nearest = nearestGeneratedByBlockLevelFO();
- if (nearest == null || ! (nearest instanceof Area)) {
- return Constants.DIMENSION_AUTO;
- }
- return ((Area) nearest).narIPD();
- }
-
public int traitLetterSpacingOpt() {
return traitGeneratedBy().traitLetterSpacingOpt();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|