PDFGoTo: setXPosition and setYPosition

2007-03-28 Thread Paul Vinkenoog
Hi all,

org.apache.fop.pdf.PDFGoTo currently has the following position
setters:

public void setYPosition(float yPosition) {
this.yPosition = yPosition;
}

public void setXPosition(int xPosition) {
this.xPosition = (xPosition / 1000f);
}

This seems a little inconsistent to me.

setYPosition is called from the PDFRenderer, setXPosition isn't called
from anywhere at all in the FOP sources.

Since PDFGoTo.java is included in my upcoming basic-links patch
proposal anyway, shall I make setXPosition consistent with
setYPosition (accepting float, no division by 1000)?


Kind regards,
Paul Vinkenoog


Re: PDFGoTo: setXPosition and setYPosition

2007-03-28 Thread Andreas L Delmelle

On Mar 28, 2007, at 13:23, Paul Vinkenoog wrote:

Hi Paul,


org.apache.fop.pdf.PDFGoTo currently has the following position
setters:

public void setYPosition(float yPosition) {
this.yPosition = yPosition;
}

public void setXPosition(int xPosition) {
this.xPosition = (xPosition / 1000f);
}

This seems a little inconsistent to me.


A 'little', you say... :/

AFAICT, you can safely change the signature and implementation for  
setXPosition().



Cheers,

Andreas