This file contains hidden or 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
package com.github.lofi.client; | |
public class Product { | |
private final String id; | |
private final String name; | |
... | |
private Product(Builder productBuilder) { | |
this.id = productBuilder.id; | |
this.name = productBuilder.name; |
This file contains hidden or 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
package com.github.lofi.client; | |
import static org.jboss.elemento.Elements.br; | |
... | |
import java.util.logging.Logger; | |
... | |
@Singleton | |
public class ProductComposite { | |
private static Logger logger = Logger.getLogger(ProductComposite.class.getName()); |
This file contains hidden or 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
package com.github.lofi.client; | |
import static org.mockito.Mockito.doReturn; | |
... | |
import org.jboss.elemento.InputBuilder; | |
... | |
@ExtendWith(MockitoExtension.class) | |
@RunWith(JUnitPlatform.class) | |
class ProductCompositeTest { |
This file contains hidden or 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
package org.dominokit.samples; | |
import elemental2.dom.HTMLDivElement; | |
import org.dominokit.domino.ui.forms.CheckBox; | |
import org.dominokit.domino.ui.forms.TextBox; | |
import org.dominokit.domino.ui.grid.flex.FlexDirection; | |
import org.dominokit.domino.ui.grid.flex.FlexItem; | |
import org.dominokit.domino.ui.grid.flex.FlexLayout; | |
import org.dominokit.domino.ui.utils.BaseDominoElement; |
This file contains hidden or 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
package com.example.test; | |
import java.util.Collection; | |
import java.util.HashSet; | |
import java.util.Map; | |
import java.util.Set; | |
import java.util.stream.Collectors; | |
import org.springframework.beans.factory.annotation.Value; | |
import org.springframework.context.annotation.Bean; |
OlderNewer