Class RowConstructionListener


  • public abstract class RowConstructionListener
    extends java.lang.Object
    Class RowConstructionListener. An "interface" for objects that need to listen to row object construction events.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract void headerConstructed​(org.eclipse.swt.widgets.Control newHeader)
      Method headerConstructed.
      abstract void rowConstructed​(org.eclipse.swt.widgets.Control newRow)
      Method rowConstructed.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RowConstructionListener

        public RowConstructionListener()
    • Method Detail

      • rowConstructed

        public abstract void rowConstructed​(org.eclipse.swt.widgets.Control newRow)
        Method rowConstructed. Called when the CompositeTable creates a new row object. CompositeTable only creates a new row object when it needs on in order to fill vacant space. During its life cycle, it never disposes a row object, but rather caches unused row objects for later reuse if needed. All row objects are disposed when the CompositeTable itself is disposed.
        Parameters:
        newRow - The new row object that was just constructed.
      • headerConstructed

        public abstract void headerConstructed​(org.eclipse.swt.widgets.Control newHeader)
        Method headerConstructed. Called when the CompositeTable creates a new header object. CompositeTable only creates a new header when the runTime property is set to true. This method permits clients to modify the header control that was created from the prototype header control as needed.
        Parameters:
        newHeader - The new header object that was just constructed.