mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 19:35:49 +00:00
23 lines
350 B
ActionScript
23 lines
350 B
ActionScript
package pkg {
|
|
|
|
public class ParentParentClass {
|
|
|
|
//Reference to subclass: (circular reference)
|
|
private var other:ParentClass;
|
|
|
|
public function ParentParentClass() {
|
|
// constructor code
|
|
}
|
|
|
|
public function setOther(other:ParentClass){
|
|
this.other = other;
|
|
}
|
|
|
|
public function getAChar():String{
|
|
return "A";
|
|
}
|
|
|
|
}
|
|
|
|
}
|