KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > persist > model > ModelInternal


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: ModelInternal.java,v 1.5 2006/10/30 21:14:33 bostic Exp $
7  */

8
9 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, PersistCatalog catalog) {
22         model.setCatalog(catalog);
23     }
24 }
25
Popular Tags