Package org.jboss.deployers.vfs.plugins.vfs

Examples of org.jboss.deployers.vfs.plugins.vfs.VirtualFileSerializator


      directRootSerialization = in.readBoolean();
      if (directRootSerialization)
         root = (VirtualFile)in.readObject();
      else
      {
         VirtualFileSerializator serializator = (VirtualFileSerializator)in.readObject();
         root = serializator.getFile();
      }
   }
View Full Code Here


      super.writeExternal(out);
      out.writeBoolean(directRootSerialization);
      if (directRootSerialization)
         out.writeObject(root);
      else
         out.writeObject(new VirtualFileSerializator(root));
   }
View Full Code Here

TOP

Related Classes of org.jboss.deployers.vfs.plugins.vfs.VirtualFileSerializator

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.