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

devonfw / IDEasy / 13788808942

11 Mar 2025 01:08PM UTC coverage: 66.998% (-1.6%) from 68.619%
13788808942

Pull #1017

github

web-flow
Merge 2597874a1 into 2cf68279f
Pull Request #1017: #404: enhance logging with custom slf4j bridge

3034 of 4951 branches covered (61.28%)

Branch coverage included in aggregate %.

7831 of 11266 relevant lines covered (69.51%)

3.03 hits per line

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

0.0
cli/src/main/java/com/devonfw/tools/ide/tool/python/PythonFile.java
1
package com.devonfw.tools.ide.tool.python;
2

3
import com.fasterxml.jackson.annotation.JsonProperty;
4

5
/**
6
 * Java object to represent the JSON of a single download file of a Python release. Mapping just the needed properties
7
 */
8
public class PythonFile {
×
9

10
  @JsonProperty("filename")
11
  private String filename;
12

13
  @JsonProperty("arch")
14
  private String arch;
15

16
  @JsonProperty("platform")
17
  private String platform;
18

19
  @JsonProperty("download_url")
20
  private String download_url;
21

22
  /**
23
   * @return the filename of the download.
24
   */
25
  public String getFilename() {
26

27
    return this.filename;
×
28
  }
29

30
  /**
31
   * @return the operating system of the download.
32
   */
33
  public String getPlatform() {
34

35
    return this.platform;
×
36
  }
37

38
  /**
39
   * @return the system architecture of the download.
40
   */
41
  public String getArch() {
42

43
    return this.arch;
×
44
  }
45

46
  /**
47
   * @return the URL of the download.
48
   */
49
  public String getDownloadUrl() {
50

51
    return this.download_url;
×
52
  }
53
}
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