| commit | 95d7826ea383a0bbf08617b7eb207a41fdd4a771 | [log] [tgz] |
|---|---|---|
| author | Edwin Park <esp1@cornell.edu> | Thu May 30 14:38:18 2013 -0400 |
| committer | Edwin Park <esp1@cornell.edu> | Thu May 30 14:38:18 2013 -0400 |
| tree | 1033a24ba82ec76a14f3ef417906ec3baeb3c9ca | |
| parent | 2fa89ea0ebb5d43ed75cd4290653912be83b6cef [diff] |
warning comments
diff --git a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/layer/axis/impl/hideshow/HideShowAxis.xtend b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/layer/axis/impl/hideshow/HideShowAxis.xtend index bc034df..e0c0d89 100644 --- a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/layer/axis/impl/hideshow/HideShowAxis.xtend +++ b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/layer/axis/impl/hideshow/HideShowAxis.xtend
@@ -9,6 +9,11 @@ import static extension org.eclipse.nebula.widgets.nattable.core.layer.axis.AxisInvariants.* +/** + * An axis that allows segments to be hidden and later shown again. + * <p> + * NOTE: This axis implementation is not performant for large numbers (e.g. thousands) of segments. + */ class HideShowAxis extends AbstractAxis { val SortedMap<Integer, Serializable> hiddenSegmentPositionToIdMap = new TreeMap
diff --git a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/layer/axis/impl/reorder/ReorderAxis.xtend b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/layer/axis/impl/reorder/ReorderAxis.xtend index baad0b2..7e26c0f 100644 --- a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/layer/axis/impl/reorder/ReorderAxis.xtend +++ b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/core/layer/axis/impl/reorder/ReorderAxis.xtend
@@ -8,6 +8,11 @@ import static extension org.eclipse.nebula.widgets.nattable.core.layer.axis.AxisInvariants.* +/** + * An axis that allows reordering of its segments. + * <p> + * NOTE: This axis implementation is not performant for large numbers (e.g. thousands) of segments. + */ class ReorderAxis extends AbstractAxis { val List<Serializable> reorderedSegmentIds = newArrayList