Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2013-01-25 05:07:43 +0000
committerEike Stepper2013-01-25 05:07:43 +0000
commitab4950742d0662a8412a35898305d3393976cfdc (patch)
tree58e73ff43c4af495ca3dfab83727a1cd926de225
parent539613b260472349a5d1b3a0fe0b578b96094310 (diff)
downloadcdo-ab4950742d0662a8412a35898305d3393976cfdc.tar.gz
cdo-ab4950742d0662a8412a35898305d3393976cfdc.tar.xz
cdo-ab4950742d0662a8412a35898305d3393976cfdc.zip
Replace "Bugzilla" with "Bug"
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/db/mapping/IMappingStrategy.java52
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/DBStoreAccessor.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/AbstractMappingStrategy.java4
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/Repository.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TimeStampAuthority.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TransactionCommitContext.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/View.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_293283_Test.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_318876_Test.java6
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java2
11 files changed, 39 insertions, 39 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/db/mapping/IMappingStrategy.java b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/db/mapping/IMappingStrategy.java
index 0f34a85e96..6a2c528824 100644
--- a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/db/mapping/IMappingStrategy.java
+++ b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/db/mapping/IMappingStrategy.java
@@ -46,7 +46,7 @@ import java.util.Set;
* named as such) and to get properties and informations about the mappings used. The mapping classes (e.g., instances
* of IClassMapping and IListMapping) also use this class as a central point of information and as a resource of common
* functionalities.
- *
+ *
* @author Eike Stepper
* @author Stefan Winkler
* @since 2.0
@@ -91,7 +91,7 @@ public interface IMappingStrategy
* </ul>
* Default is a memory cache size of 10,000,000.
* <p>
- *
+ *
* @since 4.0
*/
public static final String PROP_OBJECT_TYPE_CACHE_SIZE = "objectTypeCacheSize"; //$NON-NLS-1$
@@ -104,7 +104,7 @@ public interface IMappingStrategy
/**
* Set the store to which this MappingStrategy instance belongs. Should only be called by the {@link DBStore}, and
* only once to initialize the connection between {@link DBStore} and mapping strategy.
- *
+ *
* @param dbStore
* the DBStore instance to which this MappingStrategy instance belongs.
*/
@@ -112,7 +112,7 @@ public interface IMappingStrategy
/**
* Factory for value mappings of single-valued attributes.
- *
+ *
* @param feature
* the feature for which a mapping should be created. It must hold <code>feature.isMany() == false</code>.
* @return the mapping created.
@@ -121,7 +121,7 @@ public interface IMappingStrategy
/**
* Factory for value mappings of multi-valued-attributes.
- *
+ *
* @param containingClass
* the class containing the feature.
* @param feature
@@ -131,7 +131,7 @@ public interface IMappingStrategy
/**
* Create a suitable table name which can be used to map the given element. Should only be called by mapping classes.
- *
+ *
* @param element
* the element for which the name should be created. It must hold:
* <code>element instanceof EClass || element instanceof EPackage</code>.
@@ -142,7 +142,7 @@ public interface IMappingStrategy
/**
* Create a suitable table name which can be used to map the given element. Should only be called by mapping classes.
* Should only be called by mapping classes.
- *
+ *
* @param containingClass
* the class containeng the feature.
* @param feature
@@ -153,7 +153,7 @@ public interface IMappingStrategy
/**
* Create a suitable column name which can be used to map the given element. Should only be called by mapping classes.
- *
+ *
* @param feature
* the feature for which the column name should be created.
* @return the created column name. It is guaranteed that the name is compatible with the chosen database.
@@ -163,7 +163,7 @@ public interface IMappingStrategy
/**
* Create and initialize the mapping infrastructure for the given packages. Should be called from the DBStore or the
* DBStoreAccessor.
- *
+ *
* @param connection
* the connection to use.
* @param packageUnits
@@ -175,21 +175,21 @@ public interface IMappingStrategy
/**
* Remove the mapping infrastructure for the given packages. Should be called from the DBStore or the DBStoreAccessor.
- *
+ *
* @param connection
* the connection to use.
* @param packageUnits
* the packages for which the mappings should be removed
* @since 4.0
*/
- // Bugzilla 298632
+ // Bug 298632
public void removeMapping(Connection connection, InternalCDOPackageUnit[] packageUnits);
/**
* Look up an existing class mapping for the given class. Before this method is called, the class mapping must have
* been initialized by calling {@link #createMapping(Connection, InternalCDOPackageUnit[], OMMonitor)} on its
* containing package.
- *
+ *
* @param eClass
* the class to look up.
* @return the class mapping.
@@ -198,14 +198,14 @@ public interface IMappingStrategy
/**
* Returns all class mappings of this strategy.
- *
+ *
* @since 4.0
*/
public Map<EClass, IClassMapping> getClassMappings();
/**
* Returns all class mappings of this strategy.
- *
+ *
* @since 4.0
*/
public Map<EClass, IClassMapping> getClassMappings(boolean createOnDemand);
@@ -214,7 +214,7 @@ public interface IMappingStrategy
* Query if this mapping supports revision deltas. <br>
* If this method returns <code>true</code>, it is guaranteed that all class mappings returned by
* {@link #getClassMapping(EClass)} implement {@link IClassMappingDeltaSupport}.
- *
+ *
* @return <code>true</code> if revision deltas are supported, <code>false</code> else.
*/
public boolean hasDeltaSupport();
@@ -223,14 +223,14 @@ public interface IMappingStrategy
* Query if this mapping supports audits. <br>
* If this method returns <code>true</code>, it is guaranteed that all class mappings returned by
* {@link #getClassMapping(EClass)} implement {@link IClassMappingAuditSupport}.
- *
+ *
* @return <code>true</code> if audits are supported, <code>false</code> else.
*/
public boolean hasAuditSupport();
/**
* Query if this mapping supports branches. <br>
- *
+ *
* @return <code>true</code> if branches are supported, <code>false</code> else.
* @since 3.0
*/
@@ -238,7 +238,7 @@ public interface IMappingStrategy
/**
* Executes a resource query.
- *
+ *
* @param accessor
* the accessor to use.
* @param context
@@ -248,7 +248,7 @@ public interface IMappingStrategy
/**
* Executes a cross reference query.
- *
+ *
* @param accessor
* the accessor to use.
* @param context
@@ -259,7 +259,7 @@ public interface IMappingStrategy
/**
* Read the type (i.e. class) of the object referred to by a given ID.
- *
+ *
* @param accessor
* the accessor to use to look up the type.
* @param id
@@ -270,7 +270,7 @@ public interface IMappingStrategy
/**
* Get an iterator over all instances of objects in the store.
- *
+ *
* @param accessor
* the accessor to use.
* @return the iterator.
@@ -280,7 +280,7 @@ public interface IMappingStrategy
/**
* Return the maximum object id used in the store. This is used by the DBStore if a previous crash is discovered
* during the startup process. Should only be called by the DBStore and only during startup.
- *
+ *
* @param dbAdapter
* the dbAdapter to use to access the database
* @param connection
@@ -291,7 +291,7 @@ public interface IMappingStrategy
/**
* Returns the configuration properties of this mapping strategy.
- *
+ *
* @since 4.0
*/
public Map<String, String> getProperties();
@@ -299,7 +299,7 @@ public interface IMappingStrategy
/**
* Set configuration properties for this mapping strategy. Should only be called by the factory creating the mapping
* strategy instance.
- *
+ *
* @param properties
* the configuration properties to set.
*/
@@ -314,7 +314,7 @@ public interface IMappingStrategy
* <li>The <code>timeStamp</code> parameter is {@link CDOBranchPoint#UNSPECIFIED_DATE} or equal to
* <code>revision.getTimeStamp()</code>.
* </ul>
- *
+ *
* @since 4.0
*/
public void handleRevisions(IDBStoreAccessor accessor, EClass eClass, CDOBranch branch, long timeStamp,
@@ -323,7 +323,7 @@ public interface IMappingStrategy
/**
* Returns a set of CDOIDs that have at least one revision in any of the passed branches and time ranges.
* DetachedCDORevisions must also be considered!
- *
+ *
* @see IStoreAccessor#readChangeSet(OMMonitor, CDOChangeSetSegment...)
* @since 4.0
*/
diff --git a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/DBStoreAccessor.java b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/DBStoreAccessor.java
index 9befeee0ed..5f5efbd2b4 100644
--- a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/DBStoreAccessor.java
+++ b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/DBStoreAccessor.java
@@ -742,7 +742,7 @@ public class DBStoreAccessor extends StoreAccessor implements IDBStoreAccessor,
{
getConnection().rollback();
- // Bugzilla 298632: Must rollback DBSchema to its prior state and drop the tables
+ // Bug 298632: Must rollback DBSchema to its prior state and drop the tables
getStore().getMappingStrategy().removeMapping(getConnection(), commitContext.getNewPackageUnits());
}
catch (SQLException ex)
diff --git a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/AbstractMappingStrategy.java b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/AbstractMappingStrategy.java
index 725b2ffada..d25b90ec8f 100644
--- a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/AbstractMappingStrategy.java
+++ b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/mapping/AbstractMappingStrategy.java
@@ -74,7 +74,7 @@ import java.util.concurrent.ConcurrentMap;
/**
* This abstract base class implements those methods which are most likely common to most mapping strategies. It can be
* used to derive custom mapping strategy implementation.
- *
+ *
* @author Eike Stepper
* @since 2.0
*/
@@ -488,7 +488,7 @@ public abstract class AbstractMappingStrategy extends Lifecycle implements IMapp
if (!unmap)
{
- // TODO Bugzilla 296087: Before we go ahead with creation, we should check if it's already there
+ // TODO Bug 296087: Before we go ahead with creation, we should check if it's already there
IClassMapping mapping = createClassMapping(eClass);
getStore().getDBAdapter().createTables(mapping.getDBTables(), connection);
}
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/Repository.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/Repository.java
index 46eb6ec6aa..daeb7c1aad 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/Repository.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/Repository.java
@@ -191,7 +191,7 @@ public class Repository extends Container<Object> implements InternalRepository
private EPackage[] initialPackages;
- // Bugzilla 297940
+ // Bug 297940
private TimeStampAuthority timeStampAuthority = new TimeStampAuthority(this);
@ExcludeFromDump
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TimeStampAuthority.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TimeStampAuthority.java
index db3d9d245c..6b8697e754 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TimeStampAuthority.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TimeStampAuthority.java
@@ -24,7 +24,7 @@ import java.util.TreeSet;
import java.util.concurrent.locks.ReentrantLock;
/**
- * Bugzilla 297940, 290032
+ * Bug 297940, 290032
*
* @author Caspar De Groot
*/
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TransactionCommitContext.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TransactionCommitContext.java
index 126391c5e7..d211353e54 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TransactionCommitContext.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/TransactionCommitContext.java
@@ -559,7 +559,7 @@ public class TransactionCommitContext implements InternalCommitContext
if (hasChanges)
{
- // Bugzilla 297940
+ // Bug 297940
repository.endCommit(timeStamp);
}
}
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/View.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/View.java
index 685477d273..8008684d57 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/View.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/internal/server/View.java
@@ -143,7 +143,7 @@ public class View extends Lifecycle implements InternalView, CDOCommonView.Optio
}
else if (newRevision != oldRevision)
{
- // Fix for Bugzilla 369646: ensure that revisions are fully loaded
+ // Fix for Bug 369646: ensure that revisions are fully loaded
repository.ensureChunks((InternalCDORevision)newRevision);
repository.ensureChunks((InternalCDORevision)oldRevision);
diff --git a/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java b/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
index 0a1f8985b8..50195c56b2 100644
--- a/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
+++ b/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
@@ -238,7 +238,7 @@ public class AllTestsHibernate extends AllConfigs
testClasses.remove(Bugzilla_258933_Test.class);
// replace as unsettable has to be re-visited for the hb store
- // see bugzilla 298579, it does not work for object types
+ // see Bug 298579, it does not work for object types
testClasses.add(HibernateUnsetTest.class);
testClasses.remove(UnsetTest.class);
}
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_293283_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_293283_Test.java
index 47f076d148..76aa9ef67f 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_293283_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_293283_Test.java
@@ -18,7 +18,7 @@ import org.eclipse.emf.cdo.tests.model1.OrderDetail;
import org.eclipse.emf.cdo.transaction.CDOTransaction;
/**
- * Bugzilla 293283/314387 - Failed writes on CDOObjects leave bad featureDeltas in transaction
+ * Bug 293283 / Bug 314387 - Failed writes on CDOObjects leave bad featureDeltas in transaction
*
* @author Caspar De Groot
*/
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_318876_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_318876_Test.java
index 957010a66e..eb5759751a 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_318876_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_318876_Test.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Caspar De Groot - initial API and implementation
*/
@@ -25,9 +25,9 @@ import org.eclipse.emf.ecore.util.EcoreUtil;
import java.util.Date;
/**
- * Bugzilla 318876 - Mechanism for avoiding dangling refs can introduce spurious conflicts</p>
+ * Bug 318876 - Mechanism for avoiding dangling refs can introduce spurious conflicts</p>
* http://bugs.eclipse.org/318876</p>
- *
+ *
* @author Caspar De Groot
*/
public class Bugzilla_318876_Test extends AbstractCDOTest
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java
index 4f62cf8323..4acf823001 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java
@@ -479,7 +479,7 @@ public final class CDOStoreImpl implements CDOStore
Object oldValue = null;
- // Bugzilla 293283 / 314387
+ // Bug 293283 / Bug 314387
if (feature.isMany())
{
InternalCDORevision readLockedRevision = getRevisionForReading(cdoObject);

Back to the top