Class RowCellAlignement


  • class RowCellAlignement
    extends java.lang.Object
    Container class holing the horizontal alignments for all cells within a row. Default alignment is left.
    Author:
    Andi Hotz, (c) Sahits GmbH, 2013 Created on Nov 16, 2013
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.List<javafx.geometry.HPos> alignment  
    • Constructor Summary

      Constructors 
      Constructor Description
      RowCellAlignement​(int nbColumns)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      javafx.geometry.HPos getAligenment​(int column)  
      void setAligenment​(int index, javafx.geometry.HPos pos)
      Set the alignment of column index.
      • Methods inherited from class java.lang.Object

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

      • alignment

        private final java.util.List<javafx.geometry.HPos> alignment
    • Constructor Detail

      • RowCellAlignement

        public RowCellAlignement​(int nbColumns)
    • Method Detail

      • setAligenment

        public void setAligenment​(int index,
                                  javafx.geometry.HPos pos)
        Set the alignment of column index.
        Parameters:
        index - of the column
        pos - horizontal positioning
      • getAligenment

        public javafx.geometry.HPos getAligenment​(int column)