Back to project page RoboBinding-gallery.
The source code is released under:
Apache License
If you think the Android project RoboBinding-gallery listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.robobinding.gallery.model.customcomponent; //from w w w . j a v a 2 s .c o m import org.robobinding.viewattribute.property.PropertyViewAttribute; /** * * @since 1.0 * @version $Revision: 1.0 $ * @author Cheng Wei */ public class DescriptionAttribute implements PropertyViewAttribute<TitleDescriptionBar, CharSequence> { @Override public void updateView(TitleDescriptionBar view, CharSequence newText) { view.setDescription(newText); } }