Package org.jmule.core.edonkey.packet.tag

Examples of org.jmule.core.edonkey.packet.tag.NumberTag


        ByteOrder.LITTLE_ENDIAN);
  }

  public static long extractNumberTag(Tag tag) throws JMException {
    if (tag instanceof NumberTag) {
      NumberTag ntag = (NumberTag) tag;
      return ntag.getNumber();
    }
    throw new JMException("Tag is not number tag\n"+tag);
  }
View Full Code Here

TOP

Related Classes of org.jmule.core.edonkey.packet.tag.NumberTag

Copyright © 2018 www.massapicom. 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.