Code Search for Developers
 
 
  

Patch.java from PeerWriter at Krugle


Show Patch.java syntax highlighted

package fr.loria.ecoo.wooki.woot;

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

import fr.loria.ecoo.wooki.woot.op.WootOp;

public class Patch implements Serializable {

	private String pageId;

	public String getPageId() {
		return pageId;
	}

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

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

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

	public void setData(Iterable data) throws Exception {
		data = (Vector<WootOp>) 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

  clock/
    Clock.java
    PersistentClock.java
  core/
    Pool.java
    WootId.java
    WootPage.java
    WootRow.java
  op/
    WootDel.java
    WootIns.java
    WootOp.java
  test/
    MolliUrsoTests.java
    PatchImpl.java
    PerformanceTests.java
    WootRowTest.java
  Patch.java
  State.java
  WootSite.java