Code Search for Developers
 
 
  

Patch.java from PeerWriter at Krugle


Show Patch.java syntax highlighted

package de.peerwriter.woot.operation;

import java.io.Serializable;
import java.util.Vector;


public class Patch implements Serializable {

	private String pageId;

	public String getPageId() {
		return pageId;
	}

	public void setPageId(String pageId) {
		this.pageId = pageId;
	}

	private Vector<Operation> data = new Vector<Operation>();

	public Iterable getData() throws Exception {
		return data;
	}

	public void setData(Iterable data) throws Exception {
		data = (Vector<Operation>) data;
	}
}




See more files for this project here

PeerWriter

PeerWriter is a collaborative text editor. Multiple peers can edit the same document while they see overall changes in real-time. PeerWriter is based on a decentralized infrastructure, using a non-locking concurrency protocol ensuring global consistency.

Project homepage: http://sourceforge.net/projects/peerwriter
Programming language(s): Java,XML
License: gpl2

  Delete.java
  Insert.java
  Operation.java
  Patch.java
  Pool.java