Examples of HBundle


Examples of hype.core.util.HBundle

   * @param key    The string that will be the key for `value`.
   * @param value  The object to be stored.
   * @return This drawable.
   */
  public HDrawable obj(String key, Object value) {
    if(_extras == null) _extras = new HBundle();
    _extras.obj(key,value);
    return this;
  }
View Full Code Here

Examples of hype.core.util.HBundle

   * @param key    The string that will be the key for `value`.
   * @param value  The native value to be stored.
   * @return This drawable.
   */
  public HDrawable num(String key, float value) {
    if(_extras == null) _extras = new HBundle();
    _extras.num(key,value);
    return this;
  }
View Full Code Here

Examples of hype.core.util.HBundle

   * @param key    The string the will be the key for `value`.
   * @param value  The boolean to be stored
   * @return This drawable.
   */
  public HDrawable bool(String key, boolean value) {
    if(_extras == null) _extras = new HBundle();
    _extras.bool(key,value);
    return this;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.