Updated test data. Unit -> jet.Unit.

This commit is contained in:
Evgeny Gerashchenko
2013-03-20 20:19:13 +04:00
parent eefdf5790a
commit d194d4d877
99 changed files with 215 additions and 215 deletions

View File

@@ -3,5 +3,5 @@ package test
public open class DifferentGetterAndSetter : java.lang.Object {
public constructor DifferentGetterAndSetter()
public open fun getSomething() : jet.Int
public open fun setSomething(/*0*/ p0 : jet.String?) : Unit
public open fun setSomething(/*0*/ p0 : jet.String?) : jet.Unit
}

View File

@@ -3,5 +3,5 @@ package test
public open class JavaBeanVar : java.lang.Object {
public constructor JavaBeanVar()
public open fun getColor() : jet.String?
public open fun setColor(/*0*/ p0 : jet.String?) : Unit
public open fun setColor(/*0*/ p0 : jet.String?) : jet.Unit
}

View File

@@ -3,5 +3,5 @@ package test
public open class JavaBeanVarOfGenericType</*0*/ P> : java.lang.Object {
public constructor JavaBeanVarOfGenericType</*0*/ P>()
public open fun getCharacters() : java.util.ArrayList<P>?
public open fun setCharacters(/*0*/ p0 : java.util.ArrayList<P>?) : Unit
public open fun setCharacters(/*0*/ p0 : java.util.ArrayList<P>?) : jet.Unit
}

View File

@@ -2,6 +2,6 @@ package test
public open class TwoSetters : java.lang.Object {
public constructor TwoSetters()
public open fun setSize(/*0*/ p0 : jet.Int) : Unit
public open fun setSize(/*0*/ p0 : jet.String?) : Unit
public open fun setSize(/*0*/ p0 : jet.Int) : jet.Unit
public open fun setSize(/*0*/ p0 : jet.String?) : jet.Unit
}