OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 83 | Rev 182 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 83 Rev 180
Line 95... Line 95...
95
    private final LinkedList<Sep> separators;
95
    private final LinkedList<Sep> separators;
96
 
96
 
97
    public Lines(final ODDocument doc, final String text) {
97
    public Lines(final ODDocument doc, final String text) {
98
        super();
98
        super();
99
        this.doc = doc;
99
        this.doc = doc;
100
        this.xml = OOXML.get(doc.getFormatVersion(), false);
100
        this.xml = doc.getFormatVersion().getXML();
101
        this.lines = new LinkedList<String>();
101
        this.lines = new LinkedList<String>();
102
        this.separators = new LinkedList<Sep>();
102
        this.separators = new LinkedList<Sep>();
103
        this.parse(text, isCalc());
103
        this.parse(text, isCalc());
104
    }
104
    }
105
 
105