Rename setParentData to setupParentData since it's not a setter per se.

TBR=abarth

Review URL: https://codereview.chromium.org/1208293002.
diff --git a/examples/rendering/sector_layout.dart b/examples/rendering/sector_layout.dart
index 85dcc41..a1aa03b 100644
--- a/examples/rendering/sector_layout.dart
+++ b/examples/rendering/sector_layout.dart
@@ -65,7 +65,7 @@
 
 abstract class RenderSector extends RenderObject {
 
-  void setParentData(RenderObject child) {
+  void setupParentData(RenderObject child) {
     if (child.parentData is! SectorParentData)
       child.parentData = new SectorParentData();
   }
@@ -197,7 +197,7 @@
     }
   }
 
-  void setParentData(RenderObject child) {
+  void setupParentData(RenderObject child) {
     // TODO(ianh): avoid code duplication
     if (child.parentData is! SectorChildListParentData)
       child.parentData = new SectorChildListParentData();
@@ -307,7 +307,7 @@
     }
   }
 
-  void setParentData(RenderObject child) {
+  void setupParentData(RenderObject child) {
     // TODO(ianh): avoid code duplication
     if (child.parentData is! SectorChildListParentData)
       child.parentData = new SectorChildListParentData();
@@ -407,7 +407,7 @@
     markNeedsLayout();
   }
 
-  void setParentData(RenderObject child) {
+  void setupParentData(RenderObject child) {
     if (child.parentData is! SectorParentData)
       child.parentData = new SectorParentData();
   }