NoxFileUnit.java :  » Messenger » projectnox » nox » xml » Java Open Source

Java Open Source » Messenger » projectnox 
projectnox » nox » xml » NoxFileUnit.java
package nox.xml;

import java.io.Serializable;

@SuppressWarnings("serial")
public class NoxFileUnit implements Serializable{
  private String name = "";
  private byte[] data;

  public NoxFileUnit(String name, byte[] data){
    this.name = name;
    this.data = data;
  }
  public String getName(){
    return name;
  }
  public byte[] getData(){
    return data;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.