001package org.nuxeo.ecm.platform.signature.api.sign;
002
003public interface SignatureLayout {
004
005    public Integer getLines();
006
007    public Integer getColumns();
008
009    public Integer getStartLine();
010
011    public Integer getStartColumn();
012
013    public Integer getTextSize();
014}