Package de.lessvoid.nifty.loaderv2.types

Source Code of de.lessvoid.nifty.loaderv2.types.HoverType

package de.lessvoid.nifty.loaderv2.types;

import de.lessvoid.nifty.effects.Falloff;
import de.lessvoid.nifty.tools.StringHelper;

public class HoverType extends XmlBaseType {
  public HoverType(final HoverType hoverType) {
    super(hoverType);
  }

  public HoverType() {
  }

  public String output(final int offset) {
    return StringHelper.whitespace(offset) + "<hover> " + super.output(offset);
  }

  public Falloff materialize() {
    return new Falloff(getAttributes().createProperties());
  }
}
TOP

Related Classes of de.lessvoid.nifty.loaderv2.types.HoverType

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.