Moved loadJava "general" tests to subdirectory.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package test;
|
||||
|
||||
public interface LoadIterable<T> {
|
||||
public Iterable<T> getIterable();
|
||||
public void setIterable(Iterable<T> Iterable);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterable<T> : java.lang.Object {
|
||||
public fun getIterable(): MutableIterable<T>?
|
||||
public fun setIterable(p0: Iterable<T>?)
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterable</*0*/ T> : java.lang.Object {
|
||||
public abstract fun getIterable() : jet.MutableIterable<T>?
|
||||
public abstract fun setIterable(/*0*/ p0 : jet.Iterable<T>?) : Unit
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package test;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
public interface LoadIterator<T> {
|
||||
public Iterator<T> getIterator();
|
||||
public void setIterator(Iterator<T> iterator);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterator<T> : java.lang.Object {
|
||||
public fun getIterator(): MutableIterator<T>?
|
||||
public fun setIterator(p0: Iterator<T>?)
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterator</*0*/ T> : java.lang.Object {
|
||||
public abstract fun getIterator() : jet.MutableIterator<T>?
|
||||
public abstract fun setIterator(/*0*/ p0 : jet.Iterator<T>?) : Unit
|
||||
}
|
||||
Reference in New Issue
Block a user