-
Notifications
You must be signed in to change notification settings - Fork 22
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
1 parent
b56006c
commit f2142aa
Showing
8 changed files
with
165 additions
and
170 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
...ch-unit-junit5/src/test/java/com/vaadin/flow/component/routerlink/AbstractTargetView.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,24 @@ | ||
/* | ||
* Copyright (C) 2000-2025 Vaadin Ltd | ||
* | ||
* This program is available under Vaadin Commercial License and Service Terms. | ||
* | ||
* See <https://vaadin.com/commercial-license-and-service-terms> for the full | ||
* license. | ||
*/ | ||
|
||
package com.vaadin.flow.component.routerlink; | ||
|
||
import com.vaadin.flow.component.Component; | ||
import com.vaadin.flow.component.HasComponents; | ||
import com.vaadin.flow.component.html.Span; | ||
|
||
abstract class AbstractTargetView extends Component implements HasComponents { | ||
|
||
final Span message; | ||
|
||
public AbstractTargetView() { | ||
message = new Span(); | ||
add(message); | ||
} | ||
} |
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
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
Oops, something went wrong.