Package com.comphenix.protocol.wrappers.nbt

Examples of com.comphenix.protocol.wrappers.nbt.NbtVisitor


   * Write the content of a NBT tag to a configuration section.
   * @param value - the NBT tag to write.
   * @param destination - the destination section.
   */
  public <TType> void serialize(NbtBase<TType> value, final ConfigurationSection destination) {
    value.accept(new NbtVisitor() {
      private ConfigurationSection current = destination;
     
      // The current list we're working on
      private List<Object> currentList;
     
View Full Code Here

TOP

Related Classes of com.comphenix.protocol.wrappers.nbt.NbtVisitor

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.