MCPcopy Create free account
hub / github.com/Nurtak/ObjectGraphVisualization / restrictedHeight

Method restrictedHeight

src/ch/hsr/ogv/view/PaneBox.java:524–533  ·  view source on GitHub ↗
(double height)

Source from the content-addressed store, hash-verified

522 }
523
524 private double restrictedHeight(double height) {
525 double retHeight = height;
526 if (height < MIN_HEIGHT) {
527 retHeight = MIN_HEIGHT;
528 }
529 else if (height > MAX_HEIGHT) {
530 retHeight = MAX_HEIGHT;
531 }
532 return retHeight;
533 }
534
535 public void setWidth(double witdh) {
536 this.borderPane.setPrefWidth(witdh);

Callers 3

calcMinHeightMethod · 0.95
setMinHeightMethod · 0.95
setMaxHeightMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected