
org.robobinding.widget.view.EnabledAttribute Maven / Gradle / Ivy
package org.robobinding.widget.view;
import org.robobinding.viewattribute.property.PropertyViewAttribute;
import android.view.View;
/**
*
* @since 1.0
* @version $Revision: 1.0 $
* @author Robert Taylor
*/
public class EnabledAttribute implements PropertyViewAttribute {
@Override
public void updateView(View view, Boolean newValue) {
view.setEnabled(newValue);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy