getAllFields() replaced by getFields()

This commit is contained in:
Sergey Ignatov
2011-11-15 15:58:17 +04:00
parent 4c7056b2f9
commit 437fe1b6b4
3 changed files with 20 additions and 1 deletions
@@ -0,0 +1,7 @@
class Base {
private String myFirst;
}
class Child extends Base {
private String mySecond;
}
@@ -0,0 +1,12 @@
open class Base(myFirst : String?) {
private var myFirst : String?
{
$myFirst = myFirst
}
}
open class Child(mySecond : String?) : Base() {
private var mySecond : String?
{
$mySecond = mySecond
}
}