Examples of NbtVisitor


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
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.