• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

AuthMe / ConfigMe / 7041999669

30 Nov 2023 04:25AM UTC coverage: 99.413%. Remained the same
7041999669

Pull #401

github

web-flow
Bump actions/setup-java from 3 to 4

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #401: Bump actions/setup-java from 3 to 4

527 of 540 branches covered (0.0%)

1524 of 1533 relevant lines covered (99.41%)

4.57 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/main/java/ch/jalu/configme/beanmapper/context/ExportContext.java
1
package ch.jalu.configme.beanmapper.context;
2

3
import ch.jalu.configme.beanmapper.propertydescription.BeanPropertyComments;
4
import org.jetbrains.annotations.NotNull;
5

6
/**
7
 * Context used by the bean mapper when a value is exported.
8
 */
9
public interface ExportContext {
10

11
    /**
12
     * @return path relative to the bean root that is currently being processed
13
     */
14
    @NotNull String getBeanPath();
15

16
    /**
17
     * Creates a child context with the given path as addition to this context's path.
18
     *
19
     * @param path the path to add
20
     * @return child export context
21
     */
22
    @NotNull ExportContext createChildContext(@NotNull String path);
23

24
    /**
25
     * Specifies whether the given comments instance should be included in the export in this context. Comments
26
     * should not be included if they're specified to appear only once and they've already been incorporated.
27
     *
28
     * @param comments the comments instance to process
29
     * @return true if the comments should be included, false if they should be skipped
30
     */
31
    boolean shouldInclude(@NotNull BeanPropertyComments comments);
32

33
    /**
34
     * Registers the given comments. Used to keep track of all unique comment's UUIDs that have been processed.
35
     *
36
     * @param comments the comments instance to process
37
     */
38
    void registerComment(@NotNull BeanPropertyComments comments);
39

40
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc