Fixed up packages.

This commit is contained in:
Michael Bayne
2008-11-16 08:01:19 +00:00
parent c60181a484
commit 9c0dbb5b47
2 changed files with 20 additions and 20 deletions
@@ -2,7 +2,7 @@
// $Id$ // $Id$
// //
// samskivert library - useful routines for java programs // samskivert library - useful routines for java programs
// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell // Copyright (C) 2006-2008 Michael Bayne, Pär Winzell
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -18,17 +18,17 @@
// License along with this library; if not, write to the Free Software // License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.samskivert.jdbc.depot.tests; package com.samskivert.depot.tests;
import java.sql.Date; import java.sql.Date;
import java.sql.Timestamp; import java.sql.Timestamp;
import com.samskivert.jdbc.depot.Key; import com.samskivert.depot.Key;
import com.samskivert.jdbc.depot.PersistentRecord; import com.samskivert.depot.PersistentRecord;
import com.samskivert.jdbc.depot.annotation.Entity; import com.samskivert.depot.annotation.Entity;
import com.samskivert.jdbc.depot.annotation.Id; import com.samskivert.depot.annotation.Id;
import com.samskivert.jdbc.depot.annotation.Index; import com.samskivert.depot.annotation.Index;
import com.samskivert.jdbc.depot.expression.ColumnExp; import com.samskivert.depot.expression.ColumnExp;
import com.samskivert.util.StringUtil; import com.samskivert.util.StringUtil;
@@ -2,7 +2,7 @@
// $Id$ // $Id$
// //
// samskivert library - useful routines for java programs // samskivert library - useful routines for java programs
// Copyright (C) 2006-2007 Michael Bayne, Pär Winzell // Copyright (C) 2006-2008 Michael Bayne, Pär Winzell
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
// License along with this library; if not, write to the Free Software // License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.samskivert.jdbc.depot.tests; package com.samskivert.depot.tests;
import java.sql.Date; import java.sql.Date;
import java.sql.Timestamp; import java.sql.Timestamp;
@@ -28,16 +28,16 @@ import java.util.Set;
import com.samskivert.util.RandomUtil; import com.samskivert.util.RandomUtil;
import com.samskivert.jdbc.StaticConnectionProvider; import com.samskivert.jdbc.StaticConnectionProvider;
import com.samskivert.jdbc.depot.DepotRepository; import com.samskivert.depot.DepotRepository;
// import com.samskivert.jdbc.depot.Key; // import com.samskivert.depot.Key;
// import com.samskivert.jdbc.depot.KeySet; // import com.samskivert.depot.KeySet;
import com.samskivert.jdbc.depot.PersistenceContext; import com.samskivert.depot.PersistenceContext;
import com.samskivert.jdbc.depot.PersistentRecord; import com.samskivert.depot.PersistentRecord;
import com.samskivert.jdbc.depot.SchemaMigration; import com.samskivert.depot.SchemaMigration;
import com.samskivert.jdbc.depot.annotation.Computed; import com.samskivert.depot.annotation.Computed;
import com.samskivert.jdbc.depot.clause.Where; import com.samskivert.depot.clause.Where;
import com.samskivert.jdbc.depot.expression.LiteralExp; import com.samskivert.depot.expression.LiteralExp;
import com.samskivert.jdbc.depot.operator.Conditionals; import com.samskivert.depot.operator.Conditionals;
/** /**
* A test tool for the Depot repository services. * A test tool for the Depot repository services.