Searched refs:MyEntity (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/persist/test/
H A DJoinTest.java43 private PrimaryIndex<Integer,MyEntity> primary;
44 private SecondaryIndex<Integer,Integer,MyEntity> sec1;
45 private SecondaryIndex<Integer,Integer,MyEntity> sec2;
46 private SecondaryIndex<Integer,Integer,MyEntity> sec3;
60 primary = store.getPrimaryIndex(Integer.class, MyEntity.class);
88 MyEntity e = new MyEntity(i, 0, i % 2, i % 3);
139 ForwardCursor<MyEntity> entities = join.entities(txn, null);
140 for (MyEntity e : entities) {
150 private static class MyEntity { class in class:JoinTest
160 private MyEntity() {} method in class:JoinTest.MyEntity
162 MyEntity(int id, int k1, int k2, int k3) { method in class:JoinTest.MyEntity
[all...]
H A DOperationTest.java135 PrimaryIndex<Integer,MyEntity> priIndex =
136 store.getPrimaryIndex(Integer.class, MyEntity.class);
140 MyEntity e = new MyEntity();
145 EntityCursor<MyEntity> entities = priIndex.entities(txn, null);
181 PrimaryIndex<Integer,MyEntity> priIndex =
182 store.getPrimaryIndex(Integer.class, MyEntity.class);
184 SecondaryIndex<Integer,Integer,MyEntity> secIndex =
189 MyEntity e = new MyEntity();
459 static class MyEntity { class in class:OperationTest
467 private MyEntity() {} method in class:OperationTest.MyEntity
[all...]
H A DIndexTest.java63 private PrimaryIndex<Integer,MyEntity> primary;
64 private SecondaryIndex<Integer,Integer,MyEntity> oneToOne;
65 private SecondaryIndex<Integer,Integer,MyEntity> manyToOne;
66 private SecondaryIndex<Integer,Integer,MyEntity> oneToMany;
67 private SecondaryIndex<Integer,Integer,MyEntity> manyToMany;
88 primary = store.getPrimaryIndex(Integer.class, MyEntity.class);
105 String clsName = MyEntity.class.getName();
201 MyEntity e;
204 e = primary.put(txn, new MyEntity(1));
209 primary.putNoReturn(txn, new MyEntity(
818 private static class MyEntity { class in class:IndexTest
835 private MyEntity() {} method in class:IndexTest.MyEntity
837 private MyEntity(int key) { method in class:IndexTest.MyEntity
[all...]
H A DBindingTest.java179 static class Basic implements MyEntity {
256 static class SimpleTypes implements MyEntity {
339 static class ArrayTypes implements MyEntity {
425 static class EnumTypes implements MyEntity {
475 static class ProxyTypes implements MyEntity {
619 static class Embedded implements MyEntity {
780 static class Superclass implements MyEntity {
906 static class EntityUseAbstract extends Abstract implements MyEntity {
1060 static class UseCompositeKey implements MyEntity {
1190 static class UseComparableKey implements MyEntity {
2319 interface MyEntity { interface in class:BindingTest
[all...]

Completed in 171 milliseconds