-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
38 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
form/src/main/java/io/github/mmm/ui/api/widget/form/UiCustomVerticalInput.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0 | ||
* http://www.apache.org/licenses/LICENSE-2.0 */ | ||
package io.github.mmm.ui.api.widget.form; | ||
|
||
import io.github.mmm.ui.api.factory.UiWidgetFactoryNative; | ||
|
||
/** | ||
* {@link UiCustomCompositeInput} that is a {@link UiVerticalInput}. | ||
* | ||
* @param <V> type of the {@link #getValue() value}. | ||
* @since 1.0.0 | ||
*/ | ||
public class UiCustomVerticalInput<V> extends UiCustomCompositeInput<V, UiVerticalInput<V>> | ||
implements UiVerticalInput<V> { | ||
|
||
/** | ||
* The constructor. | ||
*/ | ||
public UiCustomVerticalInput() { | ||
|
||
super(UiWidgetFactoryNative.get().create(UiVerticalInput.class)); | ||
} | ||
|
||
/** | ||
* The constructor. | ||
* | ||
* @param delegate the {@link UiHorizontalInput}. | ||
*/ | ||
public UiCustomVerticalInput(UiVerticalInput<V> delegate) { | ||
|
||
super(delegate); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters