getterByBindingType method
Implementation
getterByBindingType(int idx) {
if (idx == 0) {
return getValue_direct;
} else if (idx == 1) {
return getValue_array;
} else if (idx == 2) {
return getValue_arrayElement;
} else if (idx == 3) {
return getValue_toArray;
} else {
throw ("PropertyBinding.getterByBindingType idx: $idx is not support ");
}
}