https://bz.apache.org/bugzilla/show_bug.cgi?id=69744

--- Comment #1 from Jacobo Aragunde Pérez <jaragu...@igalia.com> ---
I started taking a look at this, the trivial approach would be to add
TableRowAlign.START and END so we would map the possible jc values like this:

public enum TableRowAlign {

    LEFT(STJcTable.INT_LEFT),
    START(STJcTable.INT_START),
    CENTER(STJcTable.INT_CENTER),
    RIGHT(STJcTable.INT_RIGHT),
    END(STJcTable.INT_END);
...

But I don't think it would be desirable it because we would change the output
of this method and it could break existing code...

So should I make LEFT wrap both STJcTable.LEFT and START values somehow?

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to