Package org.freeplane.features.attribute

Examples of org.freeplane.features.attribute.AttributeTableLayoutModel


  }

  public void columnWidthChanged(final ColumnWidthChangeEvent event) {
    final float zoom = getZoom();
    final int col = event.getColumnNumber();
    final AttributeTableLayoutModel layoutModel = (AttributeTableLayoutModel) event.getSource();
    final int width = layoutModel.getColumnWidth(col);
    getColumnModel().getColumn(col).setPreferredWidth((int) (width * zoom));
    final MapView map = attributeView.getMapView();
    final NodeModel node = attributeView.getNode();
    map.getModeController().getMapController().nodeChanged(node);
  }
View Full Code Here

TOP

Related Classes of org.freeplane.features.attribute.AttributeTableLayoutModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.