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

moosetechnology / VerveineJ / 15191557690

22 May 2025 04:10PM UTC coverage: 50.616% (+0.6%) from 49.972%
15191557690

push

github

web-flow
Merge pull request #127 from moosetechnology/new-generics-implementation

New generics implementation

1884 of 3956 branches covered (47.62%)

Branch coverage included in aggregate %.

513 of 1119 new or added lines in 53 files covered. (45.84%)

53 existing lines in 10 files now uncovered.

4277 of 8216 relevant lines covered (52.06%)

2.08 hits per line

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

0.0
/app/src/main/java/org/moosetechnology/model/famix/famixjavaentities/SourceTextAnchor.java
1
// Automagically generated code, please do not change
2
package org.moosetechnology.model.famix.famixjavaentities;
3

4
import ch.akuhn.fame.FameDescription;
5
import ch.akuhn.fame.FamePackage;
6
import ch.akuhn.fame.FameProperty;
7
import org.moosetechnology.model.famix.famixtraits.THasImmediateSource;
8
import org.moosetechnology.model.famix.famixtraits.TSourceEntity;
9

10

11
@FamePackage("Famix-Java-Entities")
12
@FameDescription("SourceTextAnchor")
NEW
13
public class SourceTextAnchor extends SourceAnchor implements THasImmediateSource {
×
14

15
    private TSourceEntity element;
16
    
17
    private String source;
18
    
19

20

21
    @FameProperty(name = "element", opposite = "sourceAnchor")
22
    public TSourceEntity getElement() {
23
        return element;
×
24
    }
25

26
    public void setElement(TSourceEntity element) {
27
        if (this.element == null ? element != null : !this.element.equals(element)) {
×
28
            TSourceEntity old_element = this.element;
×
29
            this.element = element;
×
30
            if (old_element != null) old_element.setSourceAnchor(null);
×
31
            if (element != null) element.setSourceAnchor(this);
×
32
        }
33
    }
×
34
    
35
    @FameProperty(name = "lineCount", derived = true)
36
    public Number getLineCount() {
37
        // TODO: this is a derived property, implement this method manually.
38
        throw new UnsupportedOperationException("Not yet implemented!");  
×
39
    }
40
    
41
    @FameProperty(name = "source")
42
    public String getSource() {
43
        return source;
×
44
    }
45

46
    public void setSource(String source) {
47
        this.source = source;
×
48
    }
×
49
    
50

51

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

© 2026 Coveralls, Inc