]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.document.server.io/src/org/simantics/document/server/io/ITableCell.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.document.server.io / src / org / simantics / document / server / io / ITableCell.java
1 package org.simantics.document.server.io;
2
3 public interface ITableCell {
4     
5     String getText();
6
7     int getColumn();
8     
9     int getRow();
10     
11     int getBorder();
12     
13     int getAlign();
14     
15     IFont getFont();
16     
17     IColor getFGColor();
18     
19     IColor getBGColor();
20     
21     boolean getLocked();
22     
23     int getRowSpan();
24     
25     int getColumnSpan();
26 }