package com.github.AAChartModel.AAChartCore.AAOptionsModel; public class AAStates { public AAHover hover; public AASelect select; public AAInactive inactive; public AAStates hover(AAHover prop) { hover = prop; return this; } public AAStates select(AASelect prop) { select = prop; return this; } public AAStates inactive(AAInactive prop) { inactive = prop; return this; } }