Files
openide/java/java-tests/testData/refactoring/inlineMethod/Substitution.java.after
2024-10-22 12:20:34 +00:00

43 lines
1.0 KiB
Plaintext

class Foo {
public WeighingComparable<String, ProximityLocation> method(boolean b,
final Computable<String> elementComputable,
Object processingContext) {
return new WeighingComparable<String, ProximityLocation>(elementComputable, new ProximityLocation(), new Weigher[0]);
}
public static final Key<ProximityWeigher> WEIGHER_KEY = null;
}
abstract class ProximityWeigher extends Weigher<String, ProximityLocation> {
}
class ProximityLocation {
}
class Key<P> {
}
class Weigher<A, B> {
}
class Computable<O> {}
class WeighingComparable<T, Loc> implements Comparable<WeighingComparable<T, Loc>> {
public WeighingComparable(final Computable<T> element, final Loc location, final Weigher[] weighers) {
}
public int compareTo(@NotNull final WeighingComparable<T, Loc> comparable) {
return 0;
}
@Nullable
private Comparable getWeight(final int index) {
return null;
}
}