Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9f3e6151c00ebbe36545f4deeca2caa6967a490e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Created on Aug 19, 2011
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.framework.core.model.cache;

import java.util.List;
import org.eclipse.osee.framework.core.model.AbstractOseeType;

public class AbstractOseeTypeCacheTest<T extends AbstractOseeType<Long>> extends AbstractOseeCacheTest<Long, T> {

   public AbstractOseeTypeCacheTest(List<T> artifactTypes, AbstractOseeCache<Long, T> typeCache) {
      super(artifactTypes, typeCache);
   }

   @Override
   protected Long createKey() {
      // john check what needs to happen here.
      return 0x00L;
   }
}

Back to the top