Back to project page you2peer.
The source code is released under:
Apache License
If you think the Android project you2peer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.u2p.messages; // w ww. ja v a 2s .c o m import java.io.Serializable; import com.u2p.ui.component.ItemFile; public class NewFile implements Serializable{ private static final long serialVersionUID = 1L; private ItemFile newFile; private String owner; private String group; public NewFile(ItemFile newFile, String owner, String group){ setNewFile(newFile); setOwner(owner); setGroup(group); } public ItemFile getNewFile() { return newFile; } public void setNewFile(ItemFile newFile) { this.newFile = newFile; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public String getGroup() { return group; } public void setGroup(String group) { this.group = group; } }