Property definitions

android $ NativeViewGroup :: add_view
	fun add_view(view: NativeView) in "Java" `{ self.addView(view); `}
lib/android/ui/native_ui.nit:69,2--67

android $ NativeLinearLayout :: add_view
	redef fun add_view(view) in "Java"
	`{
		MarginLayoutParams params = new MarginLayoutParams(
			LinearLayout.LayoutParams.MATCH_PARENT,
			LinearLayout.LayoutParams.WRAP_CONTENT);
		self.addView(view, params);
	`}
lib/android/ui/native_ui.nit:88,2--94,3

android $ NativeGridLayout :: add_view
	redef fun add_view(view) in "Java" `{ self.addView(view); `}
lib/android/ui/native_ui.nit:113,2--61