Class org.aswing.JPieChart

Field Index

Inherited from Component

Inherited from EventDispatcher

Method Index

new JPieChart()?@|}~\̪NLJOLJG2222222222 2!2"2M\3CLJJLJhijI    iLJLJG80000000D(j2LJLJG 004151_(F/LJLJϺH617181(V-LJLJϺH91:1;1(*LJLJϺH<1=1>1(t]_4LLJϺH?1@1I1J1K1L1M1N1O1P1Q1R1S1(thKLJϺHe1f1g1h1i1j1k1l1m1n1o1p1q1(0KLJϺHx}1~1111111111F8(KKJFA8HLJNBNB5A8HLJVKVK8G)K^Ko'K(CD5u )KAKLA;Kh>R4L_4L_4Lx)_hijlmn@BCFG j 0L_4L_4L Nz>KKUKoDHnLJVLJ {I1cQ&1ȞHȞHȞH&')8"°j 0L_4L_4L Z\LOP)*+,PzLJLJ2jH$MO"vnLJLJg?pP%&OHOHOH&UW7" NLJLJ|bH~v r1LLJ|bHP789:;<=vFKKUKpqD 87 * Returns is this MCPanel is living. 88 * A MCPanel is living when it is created base on a exist movieclip and was appended some children. 89 * <p> 90 * A MCPanel is not living when is was destroied, or its panel movieclip is not exist or it has no children any more. 91 */ 92 public function isLiving():Boolean{ 93 return MCUtils.isMovieClipExist(root_mc) && getComponentCount() > 0; 94 } 95 96 /** 97 * You can't set a border to a MCPanel, it will throw error. 98 * @throws Error when you set any border to MCPanel. 99 */ 100 public function setBorder(b:Border):Void{ 101 trace("Can not set a Border to MCPanel"); 102 throw new Error("Can not set a Border to MCPanel"); 103 } 104 105 public function getInsets():Insets{ 106 return new Insets(); 107 } 108 109 public function getPanelMC():MovieClip{ 110 return root_mc; 111 } 112 113 /** 114 * @return true always here. 115 */ 116 public function isValidateRoot():Boolean{ 117 return true; 118 } 119 120 /** 121 * cannot add this Com to a container. 122 * @throws Error when you add it to any parent. 123 */ 124 public function addTo(parent:Container):Void{ 125 trace("Cannot add a MCPanel to a Container"); 126 throw new Error("Cannot add a MCPanel to a Container"); 127 } 128 129 public function createChildMC(nameStart:String):MovieClip{ 130 return