~codescore-dev/codescore/version-1.0

« back to all changes in this revision

Viewing changes to src/net/codescore/dbo/CDO.java

  • Committer: Adam Cornett
  • Date: 2008-03-16 21:50:13 UTC
  • Revision ID: adam.cornett@gmail.com-20080316215013-sr98v9he6ez74hey
Refactoring! changed the top package to net.codescore from net.launchpad.codescore to reflect the new website and to cut back on the lenght of full class names

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 * <http://www.gnu.org/licenses>.
11
11
 */
12
12
 
13
 
package net.launchpad.codescore.dbo;
 
13
package net.codescore.dbo;
14
14
 
15
15
import org.apache.cayenne.CayenneDataObject;
16
16
import org.apache.commons.logging.Log;
17
17
import org.apache.commons.logging.LogFactory;
18
18
 
19
 
import net.launchpad.codescore.dbo.inf.ContextObject;
 
19
import net.codescore.dbo.inf.ContextObject;
20
20
 
21
 
public abstract class CDO extends CayenneDataObject implements Comparable<CDO>,ContextObject {
 
21
public abstract class CDO extends CayenneDataObject implements Comparable<CDO>,
 
22
        ContextObject {
22
23
 
23
24
        protected Log log = LogFactory.getLog(getClass());
24
25