01: /*-
02: * See the file LICENSE for redistribution information.
03: *
04: * Copyright (c) 2002,2008 Oracle. All rights reserved.
05: *
06: * $Id: ModelInternal.java,v 1.5.2.2 2008/01/07 15:14:20 cwl Exp $
07: */
08:
09: package com.sleepycat.persist.model;
10:
11: import com.sleepycat.persist.impl.PersistCatalog;
12:
13: /**
14: * Internal access class that does not appear in the javadoc and should not be
15: * used by applications.
16: *
17: * @author Mark Hayes
18: */
19: public class ModelInternal {
20:
21: public static void setCatalog(EntityModel model,
22: PersistCatalog catalog) {
23: model.setCatalog(catalog);
24: }
25: }
|