• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2002,2008 Oracle.  All rights reserved.
5 *
6 * $Id: ModelInternal.java,v 1.1 2008/02/07 17:12:28 mark Exp $
7 */
8
9package com.sleepycat.persist.model;
10
11import com.sleepycat.persist.impl.PersistCatalog;
12
13/**
14 * Internal access class that should not be used by applications.
15 *
16 * @author Mark Hayes
17 */
18public class ModelInternal {
19
20    /**
21     * Internal access method that should not be used by applications.
22     */
23    public static void setCatalog(EntityModel model, PersistCatalog catalog) {
24        model.setCatalog(catalog);
25    }
26}
27