MCPcopy Create free account
hub / github.com/dynjs/dynjs / DefaultFoo

Class DefaultFoo

src/test/java/org/dynjs/runtime/java/DefaultFoo.java:3–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package org.dynjs.runtime.java;
2
3public class DefaultFoo extends AbstractFoo {
4
5 @Override
6 public String doIt() {
7 return "done in java";
8 }
9
10 public String doItDifferently() {
11 return "done with: " + getContent();
12 }
13
14 public String getContent() {
15 return "default content";
16 }
17
18 public void avoidMe() {
19
20 }
21
22 public String doIt(String arg, Number num) {
23 return "One way";
24 }
25
26 public String doIt(String arg, Number num, String other) {
27 return "Another way";
28 }
29
30 public String doIt(String arg, Number num, String other, Number otherNum) {
31 return "Yet another way";
32 }
33
34 public Float getSomeFloat() {
35 return 3.14F;
36 }
37
38 public Double getSomeDouble() {
39 return 3.14;
40 }
41}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected