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

knowledgepixels / nanodash / 18941803064

30 Oct 2025 01:12PM UTC coverage: 14.299% (+0.1%) from 14.184%
18941803064

push

github

ashleycaselli
refactor(Utils): merge IriItem.getShortNameFromURI with Utils.getShortNameFromURI

512 of 4504 branches covered (11.37%)

Branch coverage included in aggregate %.

1331 of 8385 relevant lines covered (15.87%)

0.71 hits per line

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

0.0
src/main/java/com/knowledgepixels/nanodash/component/AbstractContextComponent.java
1
package com.knowledgepixels.nanodash.component;
2

3
import com.knowledgepixels.nanodash.template.TemplateContext;
4
import org.apache.wicket.markup.html.panel.Panel;
5
import org.eclipse.rdf4j.model.ValueFactory;
6
import org.eclipse.rdf4j.model.impl.SimpleValueFactory;
7

8
/**
9
 * An abstract base class that extends Wicket's Panel and implements ContextComponent, providing a TemplateContext for derived components.
10
 */
11
public abstract class AbstractContextComponent extends Panel implements ContextComponent {
12

13
    protected TemplateContext context;
14
    protected static ValueFactory vf = SimpleValueFactory.getInstance();
×
15

16
    /**
17
     * Constructor for AbstractContextComponent.
18
     *
19
     * @param id      the Wicket component ID
20
     * @param context the TemplateContext to be used by this component
21
     */
22
    public AbstractContextComponent(String id, TemplateContext context) {
23
        super(id);
×
24
        this.context = context;
×
25
    }
×
26

27
}
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