Skip to content

Commit

Permalink
Javadoc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNavigateur committed Nov 24, 2011
1 parent 9a5253b commit 26cdd36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions factory/src/main/java/org/prevayler/PrevaylerFactory.java
Expand Up @@ -74,7 +74,7 @@ public class PrevaylerFactory<P>{
*/
public PrevaylerFactory(){}

/** Creates a Prevayler that will use the given prevalenceBase directory to read and write its .snapshot and .journal files, using standard Java serialization. This requires that the Prevalent System and all Transaction implementations that the Prevayler uses are Java-Serializable.
/** Creates a Prevayler that will use the given prevalenceBase directory to read and write its .snapshot and .journal files, using standard Java serialization. This requires that the Prevalent System and all Transaction implementations used by the Prevayler are Java-Serializable.
* <br>
* <br><i>Example:</i>
* <br><code>
Expand All @@ -93,7 +93,7 @@ public static <P> Prevayler<P> createPrevayler(P newPrevalentSystem, String prev
return factory.create();
}

/** Creates a Prevayler that will use a directory called "PrevalenceBase" under the current directory to read and write its .snapshot and .journal files, using standard Java serialization. This requires that the Prevalent System and all Transaction implementations that the Prevayler uses are Java-Serializable.
/** Creates a Prevayler that will use a directory called "PrevalenceBase" under the current directory to read and write its .snapshot and .journal files, using standard Java serialization. This requires that the Prevalent System and all Transaction implementations used by the Prevayler are Java-Serializable.
* @param newPrevalentSystem The newly started, "empty" prevalent system that will be used as a starting point for every system startup, until the first snapshot is taken.
* @see #createPrevayler(Serializable, String)
*/
Expand Down

0 comments on commit 26cdd36

Please sign in to comment.