Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2007-09-10 09:58:10 +0000
committerEike Stepper2007-09-10 09:58:10 +0000
commita448c447c3de30946233cd0592679165524ab0b1 (patch)
tree0e8e20a5d1127cdf550518e72ea94be5bc11c481 /plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/IStore.java
parent2f2e597d55716836623029b36fe44c67a609b955 (diff)
downloadcdo-a448c447c3de30946233cd0592679165524ab0b1.tar.gz
cdo-a448c447c3de30946233cd0592679165524ab0b1.tar.xz
cdo-a448c447c3de30946233cd0592679165524ab0b1.zip
Changed comment line width from 80 to 120.
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/IStore.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/IStore.java45
1 files changed, 19 insertions, 26 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/IStore.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/IStore.java
index d02664264c..5f4afadcfa 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/IStore.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/IStore.java
@@ -22,52 +22,45 @@ public interface IStore extends IRepositoryElement
public String getStoreType();
/**
- * @return <code>true</code> if this store supports the retrieval of
- * historical revisions, <code>false</code> otherwise.
+ * @return <code>true</code> if this store supports the retrieval of historical revisions, <code>false</code>
+ * otherwise.
*/
public boolean hasAuditingSupport();
/**
- * @return <code>true</code> if this store supports the storage of
- * concurrent revisions in separate branches, <code>false</code>
- * otherwise.
+ * @return <code>true</code> if this store supports the storage of concurrent revisions in separate branches,
+ * <code>false</code> otherwise.
*/
public boolean hasBranchingSupport();
/**
- * @return <code>true</code> if this store supports the efficient lookup of
- * object types, <code>false</code> otherwise.
+ * @return <code>true</code> if this store supports the efficient lookup of object types, <code>false</code>
+ * otherwise.
*/
public boolean hasEfficientTypeLookup();
/**
- * Returns a reader that can be used to read from this store in the context of
- * the given session.
+ * Returns a reader that can be used to read from this store in the context of the given session.
*
* @param session
- * The session that should be used as a context for read access or
- * <code>null</code>. The store implementor is free to interpret
- * and use the session in a manner suitable for him or ignore it at
- * all. It is meant only as a hint. Implementor can use it as a key
- * into a cache and/or register a {@link LifecycleEventAdapter} with
- * it to intercept cleanup on session close. Note however that the
- * session can be <code>null</code>, for example during startup of
- * the server while the repositories are initialized but before any
- * user session has been opened.
+ * The session that should be used as a context for read access or <code>null</code>. The store
+ * implementor is free to interpret and use the session in a manner suitable for him or ignore it at all. It
+ * is meant only as a hint. Implementor can use it as a key into a cache and/or register a
+ * {@link LifecycleEventAdapter} with it to intercept cleanup on session close. Note however that the session
+ * can be <code>null</code>, for example during startup of the server while the repositories are
+ * initialized but before any user session has been opened.
*/
public IStoreReader getReader(ISession session);
/**
- * Returns a writer that can be used to write to this store in the context of
- * the given view. The given view is always marked as a transaction.
+ * Returns a writer that can be used to write to this store in the context of the given view. The given view is always
+ * marked as a transaction.
*
* @param session
- * The view that must be used as a context for write access. The
- * store implementor is free to interpret and use the view in a
- * manner suitable for him or ignore it at all. It is meant only as a
- * hint. Implementor can use it as a key into a cache and/or register
- * a {@link LifecycleEventAdapter} with it to intercept cleanup on
- * view close.
+ * The view that must be used as a context for write access. The store implementor is free to interpret and
+ * use the view in a manner suitable for him or ignore it at all. It is meant only as a hint. Implementor can
+ * use it as a key into a cache and/or register a {@link LifecycleEventAdapter} with it to intercept cleanup
+ * on view close.
*/
public IStoreWriter getWriter(IView view);
}

Back to the top