| 
				
			 | 
			
			
				@@ -17,6 +17,7 @@ public class BottomTabsOptions implements DEFAULT_VALUES { 
			 | 
		
	
		
			
			| 
				17
			 | 
			
				17
			 | 
			
			
				 		options.currentTabIndex = json.optInt("currentTabIndex", NO_INT_VALUE); 
			 | 
		
	
		
			
			| 
				18
			 | 
			
				18
			 | 
			
			
				 		options.visible = BooleanOptions.parse(json.optString("visible")); 
			 | 
		
	
		
			
			| 
				19
			 | 
			
				19
			 | 
			
			
				 		options.animateHide = BooleanOptions.parse(json.optString("animateHide")); 
			 | 
		
	
		
			
			| 
				
			 | 
			
				20
			 | 
			
			
				+        options.testId = TextParser.parse(json, "testID"); 
			 | 
		
	
		
			
			| 
				20
			 | 
			
				21
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				21
			 | 
			
				22
			 | 
			
			
				 		return options; 
			 | 
		
	
		
			
			| 
				22
			 | 
			
				23
			 | 
			
			
				 	} 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -27,6 +28,7 @@ public class BottomTabsOptions implements DEFAULT_VALUES { 
			 | 
		
	
		
			
			| 
				27
			 | 
			
				28
			 | 
			
			
				 	BooleanOptions animateHide = BooleanOptions.False; 
			 | 
		
	
		
			
			| 
				28
			 | 
			
				29
			 | 
			
			
				 	public int currentTabIndex = NO_INT_VALUE; 
			 | 
		
	
		
			
			| 
				29
			 | 
			
				30
			 | 
			
			
				 	public Text currentTabId = new NullText(); 
			 | 
		
	
		
			
			| 
				
			 | 
			
				31
			 | 
			
			
				+    public Text testId = new NullText(); 
			 | 
		
	
		
			
			| 
				30
			 | 
			
				32
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				31
			 | 
			
				33
			 | 
			
			
				 	void mergeWith(final BottomTabsOptions other) { 
			 | 
		
	
		
			
			| 
				32
			 | 
			
				34
			 | 
			
			
				 		if (other.currentTabId.hasValue()) { 
			 |