OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 132 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 132 Rev 180
Line 41... Line 41...
41
    private int filterId, line;
41
    private int filterId, line;
42
    private String lineOption;
42
    private String lineOption;
43
    private int idRef;
43
    private int idRef;
44
    private String style = "";
44
    private String style = "";
45
 
45
    
-
 
46
    
-
 
47
  
-
 
48
 
46
    public OOXMLTableField(Element eltField, SQLRowAccessor row, SQLElement sqlElt, int id, int filterId, SQLRow rowLanguage, int idRef, OOXMLCache cache) {
49
    public OOXMLTableField(Element eltField, SQLRowAccessor row, SQLElement sqlElt, int id, int filterId, SQLRow rowLanguage, int idRef, OOXMLCache cache) {
47
        super(eltField, row, sqlElt, id, rowLanguage, cache);
50
        super(eltField, row, sqlElt, id, rowLanguage, cache);
48
        this.type = eltField.getAttributeValue("type");
51
        this.type = eltField.getAttributeValue("type");
49
        this.lineOption = eltField.getAttributeValue("lineOption");
52
        this.lineOption = eltField.getAttributeValue("lineOption");
50
        this.filterId = filterId;
53
        this.filterId = filterId;
Line 245... Line 248...
245
 
248
 
246
    public String getStyle() {
249
    public String getStyle() {
247
 
250
 
248
        return this.style;
251
        return this.style;
249
    }
252
    }
-
 
253
    
-
 
254
    public boolean isImage() {
-
 
255
        return this.type.equalsIgnoreCase("image");
-
 
256
    }
-
 
257
    
250
}
258
}