- java.lang.Object
- 
- javafx.scene.Node
- 
- javafx.scene.Parent
- 
- javafx.scene.layout.Region
- 
- javafx.scene.layout.Pane
- 
- javafx.scene.layout.HBox
 
 
 
 
 
- 
- すべての実装されたインタフェース:
- Styleable,- EventTarget
 
 public class HBox extends Pane HBoxは、単一の水平行に子をレイアウトします。 hboxにボーダーまたは余白(あるいはその両方)が設定されている場合は、それらの枠内にコンテンツがレイアウトされます。HBoxの例: 
 HBoxは、子(サイズ変更可能な場合)を優先幅にサイズ変更し、fillHeightプロパティを使用して、HBox自体の高さ全体に表示するように子の高さをサイズ変更するか、子の高さを優先値に維持するかを決定します(fillHeightのデフォルト値はtrueです)。 コンテンツの位置合せは、alignmentプロパティ(デフォルト値はPos.TOP_LEFT)によって制御されます。HBox hbox = new HBox(8); // spacing = 8 hbox.getChildren().addAll(new Label("Name:), new TextBox());hboxが優先幅よりも大きくなるようにサイズ変更された場合、子の幅はデフォルトではそれぞれの優先値に維持され、追加スペースは使用されません。 1つ以上の子に追加スペースを割り当てる必要があるアプリケーションでは、オプションで子に対してhgrow制約を設定できます。 詳細は、「オプションのレイアウト制約」を参照してください。 HBoxでは、管理対象の各子をそれぞれの可視プロパティの値に関係なくレイアウトします。管理対象外の子は無視されます。 サイズ変更可能な範囲hboxの親は、レイアウト時に、hboxのサイズ変更可能範囲内でhboxをサイズ変更します。 デフォルトでは、この範囲は、次の表に示すようにhboxのコンテンツに基づいて計算されます。 HBoxサイズ変更表 width height 最小 左/右の枠+各子の最小幅の合計+各子間のスペース 上/下の枠+子の最小高の中の最大値 優先 左/右の枠+各子の優先幅の合計+各子間のスペース 上/下の枠+子の優先高の中の最大値 最大 Double.MAX_VALUE Double.MAX_VALUE hboxの最大幅および最大高には制限がないため、親に割り当てられているスペースすべてを満たすために、親がその優先サイズより大きいサイズに変更される可能性があります。 HBoxには、サイズ範囲を直接設定するためのプロパティが用意されています。 これらのプロパティはデフォルトでセンチネル値USE_COMPUTED_SIZEに設定されますが、アプリケーションでは必要に応じてこれらを別の値に設定できます。 
 アプリケーションでは、これらのプロパティの設定をUSE_COMPUTED_SIZEに戻すことで、計算された値を復元できます。hbox.setPrefWidth(400);HBoxはデフォルトではそのコンテンツをクリップしないため、子の最小サイズが原因でhbox内に子を収めることができない場合は、子の境界がhbox自体の境界の外側まで拡大することがあります。 オプションのレイアウト制約アプリケーションでは、個別の子に制約を設定して、HBoxのレイアウトをカスタマイズできます。 HBoxでは、静的メソッドにより子に各制約を個別に設定できます。 HBox制約表 制約 Type 説明 hgrow javafx.scene.layout.Priority 子の水平方向の拡大優先度。 マージン javafx.geometry.Insets 子の外側のマージン領域。 たとえば、hboxでTextFieldに追加スペースをすべて割り当てる必要がある場合は、次のようにします。 
 複数の子に同じ拡大優先度が設定されている場合は、各子にスペースが均等に割り当てられます。 HBoxはその最大幅を上限として子を拡大するため、子にDouble.MAX_VALUE以外の最大幅が設定されているときには、アプリケーションでその値をオーバーライドして子を拡大できるようにする必要がある場合があります。 例:HBox hbox = new HBox(); TextField field = new TextField(); HBox.setHgrow(field, Priority.ALWAYS); hbox.getChildren().addAll(new Label("Search:"), field, new Button("Go"));HBox hbox = new HBox(); Button button1 = new Button("Add"); Button button2 = new Button("Remove"); HBox.setHgrow(button1, Priority.ALWAYS); HBox.setHgrow(button2, Priority.ALWAYS); button1.setMaxWidth(Double.MAX_VALUE); button2.setMaxWidth(Double.MAX_VALUE); hbox.getChildren().addAll(button1, button2);- 導入されたバージョン:
- JavaFX 2.0
 
- 
- 
プロパティのサマリープロパティ Type プロパティ 説明 ObjectProperty<Pos>alignmenthboxの幅と高さの範囲内での子の全体的な位置合せ。BooleanPropertyfillHeightサイズ変更可能な子が、hboxの高さ全体を満たすようにサイズ変更されるか、alignmentvposの値に従って整列され、適切な高さにサイズ変更されるかどうか。DoublePropertyspacinghboxの子の間の水平方向の総スペース。- 
クラス javafx.scene.Nodeで宣言されたプロパティaccessibleHelp, accessibleRoleDescription, accessibleRole, accessibleText, blendMode, boundsInLocal, boundsInParent, cacheHint, cache, clip, cursor, depthTest, disabled, disable, effectiveNodeOrientation, effect, eventDispatcher, focused, focusTraversable, hover, id, inputMethodRequests, layoutBounds, layoutX, layoutY, localToParentTransform, localToSceneTransform, managed, mouseTransparent, nodeOrientation, onContextMenuRequested, onDragDetected, onDragDone, onDragDropped, onDragEntered, onDragExited, onDragOver, onInputMethodTextChanged, onKeyPressed, onKeyReleased, onKeyTyped, onMouseClicked, onMouseDragEntered, onMouseDragExited, onMouseDragged, onMouseDragOver, onMouseDragReleased, onMouseEntered, onMouseExited, onMouseMoved, onMousePressed, onMouseReleased, onRotate, onRotationFinished, onRotationStarted, onScrollFinished, onScroll, onScrollStarted, onSwipeDown, onSwipeLeft, onSwipeRight, onSwipeUp, onTouchMoved, onTouchPressed, onTouchReleased, onTouchStationary, onZoomFinished, onZoom, onZoomStarted, opacity, parent, pickOnBounds, pressed, rotate, rotationAxis, scaleX, scaleY, scaleZ, scene, style, translateX, translateY, translateZ, viewOrder, visible
 - 
クラス javafx.scene.Parentで宣言されたプロパティneedsLayout
 - 
クラス javafx.scene.layout.Regionで宣言されたプロパティbackground、border、cacheShape、centerShape、height、insets、maxHeight、maxWidth、minHeight、minWidth、opaqueInsets、padding、prefHeight、prefWidth、scaleShape、shape、snapToPixel、width
 
- 
 - 
フィールドのサマリー- 
クラス javafx.scene.Nodeで宣言されたフィールドBASELINE_OFFSET_SAME_AS_HEIGHT
 - 
クラス javafx.scene.layout.Regionで宣言されたフィールドUSE_COMPUTED_SIZE、USE_PREF_SIZE
 
- 
 - 
メソッドのサマリーすべてのメソッド 静的メソッド インスタンス・メソッド 具象メソッド 修飾子と型 メソッド 説明 ObjectProperty<Pos>alignmentProperty()hboxの幅と高さの範囲内での子の全体的な位置合せ。static voidclearConstraints(Node child)子ノードからすべてのhbox制約を削除します。BooleanPropertyfillHeightProperty()サイズ変更可能な子が、hboxの高さ全体を満たすようにサイズ変更されるか、alignmentvposの値に従って整列され、適切な高さにサイズ変更されるかどうか。PosgetAlignment()プロパティalignmentの値を取得します。static List<CssMetaData<? extends Styleable,?>>getClassCssMetaData()OrientationgetContentBias()レイアウト用にノードのサイズ変更バイアスの向きを返します。List<CssMetaData<? extends Styleable,?>>getCssMetaData()NodeのCssMetaDataがリフレクションなしでアクセス可能になるように、このメソッドはNode.getClassCssMetaData()に委任する必要があります。static PrioritygetHgrow(Node child)子のhgrow制約を返します(設定されている場合)。static InsetsgetMargin(Node child)子のマージン制約を返します(設定されている場合)。doublegetSpacing()プロパティspacingの値を取得します。booleanisFillHeight()プロパティfillHeightの値を取得します。voidsetAlignment(Pos value)プロパティalignmentの値を設定します。voidsetFillHeight(boolean value)プロパティfillHeightの値を設定します。static voidsetHgrow(Node child, Priority value)hboxに含まれている場合に、子の水平方向の拡大優先度を設定します。static voidsetMargin(Node child, Insets value)hboxに含まれている場合に、子のマージンを設定します。voidsetSpacing(double value)プロパティspacingの値を設定します。DoublePropertyspacingProperty()hboxの子の間の水平方向の総スペース。- 
クラス javafx.scene.Nodeで宣言されたメソッドaccessibleHelpProperty, accessibleRoleDescriptionProperty, accessibleRoleProperty, accessibleTextProperty, addEventFilter, addEventHandler, applyCss, autosize, blendModeProperty, boundsInLocalProperty, boundsInParentProperty, buildEventDispatchChain, cacheHintProperty, cacheProperty, clipProperty, computeAreaInScreen, contains, contains, cursorProperty, depthTestProperty, disabledProperty, disableProperty, effectiveNodeOrientationProperty, effectProperty, eventDispatcherProperty, executeAccessibleAction, fireEvent, focusedProperty, focusTraversableProperty, getAccessibleHelp, getAccessibleRole, getAccessibleRoleDescription, getAccessibleText, getBlendMode, getBoundsInLocal, getBoundsInParent, getCacheHint, getClip, getCursor, getDepthTest, getEffect, getEffectiveNodeOrientation, getEventDispatcher, getId, getInitialCursor, getInitialFocusTraversable, getInputMethodRequests, getLayoutBounds, getLayoutX, getLayoutY, getLocalToParentTransform, getLocalToSceneTransform, getNodeOrientation, getOnContextMenuRequested, getOnDragDetected, getOnDragDone, getOnDragDropped, getOnDragEntered, getOnDragExited, getOnDragOver, getOnInputMethodTextChanged, getOnKeyPressed, getOnKeyReleased, getOnKeyTyped, getOnMouseClicked, getOnMouseDragEntered, getOnMouseDragExited, getOnMouseDragged, getOnMouseDragOver, getOnMouseDragReleased, getOnMouseEntered, getOnMouseExited, getOnMouseMoved, getOnMousePressed, getOnMouseReleased, getOnRotate, getOnRotationFinished, getOnRotationStarted, getOnScroll, getOnScrollFinished, getOnScrollStarted, getOnSwipeDown, getOnSwipeLeft, getOnSwipeRight, getOnSwipeUp, getOnTouchMoved, getOnTouchPressed, getOnTouchReleased, getOnTouchStationary, getOnZoom, getOnZoomFinished, getOnZoomStarted, getOpacity, getParent, getProperties, getPseudoClassStates, getRotate, getRotationAxis, getScaleX, getScaleY, getScaleZ, getScene, getStyle, getStyleableParent, getTransforms, getTranslateX, getTranslateY, getTranslateZ, getTypeSelector, getUserData, getViewOrder, hasProperties, hoverProperty, idProperty, inputMethodRequestsProperty, intersects, intersects, isCache, isDisable, isDisabled, isFocused, isFocusTraversable, isHover, isManaged, isMouseTransparent, isPickOnBounds, isPressed, isVisible, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParent, localToParent, localToParent, localToParent, localToParent, localToParentTransformProperty, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToSceneTransformProperty, localToScreen, localToScreen, localToScreen, localToScreen, localToScreen, lookup, lookupAll, managedProperty, mouseTransparentProperty, nodeOrientationProperty, notifyAccessibleAttributeChanged, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onInputMethodTextChangedProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDragEnteredProperty, onMouseDragExitedProperty, onMouseDraggedProperty, onMouseDragOverProperty, onMouseDragReleasedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onRotateProperty, onRotationFinishedProperty, onRotationStartedProperty, onScrollFinishedProperty, onScrollProperty, onScrollStartedProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, onZoomFinishedProperty, onZoomProperty, onZoomStartedProperty, opacityProperty, parentProperty, parentToLocal, parentToLocal, parentToLocal, parentToLocal, parentToLocal, pickOnBoundsProperty, pressedProperty, pseudoClassStateChanged, queryAccessibleAttribute, relocate, removeEventFilter, removeEventHandler, requestFocus, resizeRelocate, rotateProperty, rotationAxisProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, screenToLocal, screenToLocal, screenToLocal, setAccessibleHelp, setAccessibleRole, setAccessibleRoleDescription, setAccessibleText, setBlendMode, setCache, setCacheHint, setClip, setCursor, setDepthTest, setDisable, setDisabled, setEffect, setEventDispatcher, setEventHandler, setFocused, setFocusTraversable, setHover, setId, setInputMethodRequests, setLayoutX, setLayoutY, setManaged, setMouseTransparent, setNodeOrientation, setOnContextMenuRequested, setOnDragDetected, setOnDragDone, setOnDragDropped, setOnDragEntered, setOnDragExited, setOnDragOver, setOnInputMethodTextChanged, setOnKeyPressed, setOnKeyReleased, setOnKeyTyped, setOnMouseClicked, setOnMouseDragEntered, setOnMouseDragExited, setOnMouseDragged, setOnMouseDragOver, setOnMouseDragReleased, setOnMouseEntered, setOnMouseExited, setOnMouseMoved, setOnMousePressed, setOnMouseReleased, setOnRotate, setOnRotationFinished, setOnRotationStarted, setOnScroll, setOnScrollFinished, setOnScrollStarted, setOnSwipeDown, setOnSwipeLeft, setOnSwipeRight, setOnSwipeUp, setOnTouchMoved, setOnTouchPressed, setOnTouchReleased, setOnTouchStationary, setOnZoom, setOnZoomFinished, setOnZoomStarted, setOpacity, setPickOnBounds, setPressed, setRotate, setRotationAxis, setScaleX, setScaleY, setScaleZ, setStyle, setTranslateX, setTranslateY, setTranslateZ, setUserData, setViewOrder, setVisible, snapshot, snapshot, startDragAndDrop, startFullDrag, styleProperty, toBack, toFront, toString, translateXProperty, translateYProperty, translateZProperty, usesMirroring, viewOrderProperty, visibleProperty
 - 
クラス java.lang.Objectで宣言されたメソッドclone、equals、finalize、getClass、hashCode、notify、notifyAll、wait、wait、wait
 - 
クラス javafx.scene.layout.Paneで宣言されたメソッドgetChildren
 - 
クラス javafx.scene.Parentで宣言されたメソッドgetBaselineOffset, getChildrenUnmodifiable, getManagedChildren, getStylesheets, isNeedsLayout, layout, layoutChildren, needsLayoutProperty, requestLayout, requestParentLayout, setNeedsLayout, updateBounds
 - 
クラス javafx.scene.layout.Regionで宣言されたメソッドbackgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, computeMaxHeight, computeMaxWidth, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, getBackground, getBorder, getHeight, getInsets, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getOpaqueInsets, getPadding, getPrefHeight, getPrefWidth, getShape, getUserAgentStylesheet, getWidth, heightProperty, insetsProperty, isCacheShape, isCenterShape, isResizable, isScaleShape, isSnapToPixel, layoutInArea, layoutInArea, layoutInArea, layoutInArea, maxHeight, maxHeightProperty, maxWidth, maxWidthProperty, minHeight, minHeightProperty, minWidth, minWidthProperty, opaqueInsetsProperty, paddingProperty, positionInArea, positionInArea, prefHeight, prefHeightProperty, prefWidth, prefWidthProperty, resize, scaleShapeProperty, setBackground, setBorder, setCacheShape, setCenterShape, setHeight, setMaxHeight, setMaxSize, setMaxWidth, setMinHeight, setMinSize, setMinWidth, setOpaqueInsets, setPadding, setPrefHeight, setPrefSize, setPrefWidth, setScaleShape, setShape, setSnapToPixel, setWidth, shapeProperty, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, snapToPixelProperty, widthProperty
 - 
インタフェース javafx.css.Styleableで宣言されたメソッドgetStyleableNode, getStyleClass
 
- 
 
- 
- 
- 
プロパティの詳細- 
spacingpublic final DoubleProperty spacingProperty hboxの子の間の水平方向の総スペース。
 - 
alignmentpublic final ObjectProperty<Pos> alignmentProperty hboxの幅と高さの範囲内での子の全体的な位置合せ。
 - 
fillHeightpublic final BooleanProperty fillHeightProperty サイズ変更可能な子が、hboxの高さ全体を満たすようにサイズ変更されるか、alignmentvposの値に従って整列され、適切な高さにサイズ変更されるかどうか。 hboxの垂直位置合せがBASELINEに設定されている場合、このプロパティは無視され、子はそれぞれの優先高に合せてサイズ変更されることに注意してください。
 
- 
 - 
コンストラクタの詳細- 
HBoxpublic HBox() スペースを0としてHBoxレイアウトを作成します。
 - 
HBoxpublic HBox(double spacing) 子間のスペースを指定してHBoxレイアウトを作成します。- パラメータ:
- spacing- 各子間の水平方向のスペースの量。
 
 - 
HBoxpublic HBox(Node... children) スペースを0としてHBoxレイアウトを作成します。- パラメータ:
- children- このペインの子の初期設定。
- 導入されたバージョン:
- JavaFX 8.0
 
 - 
HBoxpublic HBox(double spacing, Node... children)子間のスペースを指定してHBoxレイアウトを作成します。- パラメータ:
- spacing- 各子間の水平方向のスペースの量。
- children- このペインの子の初期設定。
- 導入されたバージョン:
- JavaFX 8.0
 
 
- 
 - 
メソッドの詳細- 
setHgrowpublic static void setHgrow(Node child, Priority value) hboxに含まれている場合に、子の水平方向の拡大優先度を設定します。 設定した場合、hboxが優先幅よりも大きくなるようにサイズ変更されたときに、優先度に基づいて追加スペースが割り当てられます。 複数のhbox子が同じ水平成長優先度を持つ場合、余分なスペースはそれらの間で均等に分割されます。 子に水平方向の拡大優先度が設定されていない場合は、水平方向の追加スペースが使用可能な場合でも割り当てられません。 値をnullに設定すると、制約は削除されます。- パラメータ:
- child- hboxの子
- value- 子の水平方向の拡大優先度
 
 - 
getHgrowpublic static Priority getHgrow(Node child) 子のhgrow制約を返します(設定されている場合)。- パラメータ:
- child- hboxの子ノード
- 戻り値:
- 子の水平方向の拡大優先度または優先度が設定されていない場合はnull
 
 - 
setMarginpublic static void setMargin(Node child, Insets value) hboxに含まれている場合に、子のマージンを設定します。 設定した場合、子は周囲にマージン領域を設けてレイアウトされます。 値をnullに設定すると、制約は削除されます。- パラメータ:
- child- hboxの子ノード
- value- 子の周囲の空白のマージン
 
 - 
getMarginpublic static Insets getMargin(Node child) 子のマージン制約を返します(設定されている場合)。- パラメータ:
- child- hboxの子ノード
- 戻り値:
- 子のマージン、またはマージンが設定されていない場合はnull
 
 - 
clearConstraintspublic static void clearConstraints(Node child) 子ノードからすべてのhbox制約を削除します。- パラメータ:
- child- 子ノード
 
 - 
spacingPropertypublic final DoubleProperty spacingProperty() hboxの子の間の水平方向の総スペース。
 - 
setSpacingpublic final void setSpacing(double value) プロパティspacingの値を設定します。- プロパティの説明:
- hboxの子の間の水平方向の総スペース。
 
 - 
getSpacingpublic final double getSpacing() プロパティspacingの値を取得します。- プロパティの説明:
- hboxの子の間の水平方向の総スペース。
 
 - 
alignmentPropertypublic final ObjectProperty<Pos> alignmentProperty() hboxの幅と高さの範囲内での子の全体的な位置合せ。
 - 
setAlignmentpublic final void setAlignment(Pos value) プロパティalignmentの値を設定します。- プロパティの説明:
- hboxの幅と高さの範囲内での子の全体的な位置合せ。
 
 - 
getAlignmentpublic final Pos getAlignment() プロパティalignmentの値を取得します。- プロパティの説明:
- hboxの幅と高さの範囲内での子の全体的な位置合せ。
 
 - 
fillHeightPropertypublic final BooleanProperty fillHeightProperty() サイズ変更可能な子が、hboxの高さ全体を満たすようにサイズ変更されるか、alignmentvposの値に従って整列され、適切な高さにサイズ変更されるかどうか。 hboxの垂直位置合せがBASELINEに設定されている場合、このプロパティは無視され、子はそれぞれの優先高に合せてサイズ変更されることに注意してください。
 - 
setFillHeightpublic final void setFillHeight(boolean value) プロパティfillHeightの値を設定します。- プロパティの説明:
- サイズ変更可能な子が、hboxの高さ全体を満たすようにサイズ変更されるか、alignmentvposの値に従って整列され、適切な高さにサイズ変更されるかどうか。 hboxの垂直位置合せがBASELINEに設定されている場合、このプロパティは無視され、子はそれぞれの優先高に合せてサイズ変更されることに注意してください。
 
 - 
isFillHeightpublic final boolean isFillHeight() プロパティfillHeightの値を取得します。- プロパティの説明:
- サイズ変更可能な子が、hboxの高さ全体を満たすようにサイズ変更されるか、alignmentvposの値に従って整列され、適切な高さにサイズ変更されるかどうか。 hboxの垂直位置合せがBASELINEに設定されている場合、このプロパティは無視され、子はそれぞれの優先高に合せてサイズ変更されることに注意してください。
 
 - 
getContentBiaspublic Orientation getContentBias() 次のクラスからコピーされた説明:Nodeレイアウト用にノードのサイズ変更バイアスの向きを返します。 ノード・タイプにはバイアスがないため、nullを返します。 ノードがサイズ変更可能で、その高さが幅に依存する場合は、HORIZONTALを返し、その幅が高さに依存する場合は、VERTICALを返します。Resizableのサブクラスはこのメソッドをオーバーライドし、適切な値を返す必要があります。 - オーバーライド:
- getContentBias、クラス:- Node
- 戻り値:
- 子のいずれかにコンテンツ・バイアスある場合を除き、null。
- 関連項目:
- Node.isResizable()、- Node.minWidth(double)、- Node.minHeight(double)、- Node.prefWidth(double)、- Node.prefHeight(double)、- Node.maxWidth(double)、- Node.maxHeight(double)
 
 - 
getClassCssMetaDatapublic static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData() - 戻り値:
- このクラスに関連付けられたCssMetaData。スーパークラスのCssMetaDataを含むことがあります。
- 導入されたバージョン:
- JavaFX 8.0
 
 - 
getCssMetaDatapublic List<CssMetaData<? extends Styleable,?>> getCssMetaData() NodeのCssMetaDataがリフレクションなしでアクセス可能になるように、このメソッドはNode.getClassCssMetaData()に委任する必要があります。- 定義:
- getCssMetaData、インタフェース:- Styleable
- オーバーライド:
- getCssMetaData、クラス:- Region
- 戻り値:
- このノードに関連付けられたCssMetaData。スーパークラスのCssMetaDataを含むことがあります。
- 導入されたバージョン:
- JavaFX 8.0
 
 
- 
 
-