All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.gv2011.util.swing.imp.builder.Row Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package com.github.gv2011.util.swing.imp.builder;

final class Row extends Group{

  Row(final HTabImp tab, final Block block) {
    super(tab, block);
  }

  @Override
  void setBounds(final Block block, final short left, final short width) {
    block.setHorizontal(left, width);
  }

  @Override
  Orientation orientation() {
    return Orientation.HORIZONTAL;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy