summaryrefslogtreecommitdiff
path: root/java/src/Freeze/Util.java
blob: 6bab8aeec7d2a5634337db9633b718b669c3ecc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// **********************************************************************
//
// Copyright (c) 2001
// Mutable Realms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************

package Freeze;

public class Util
{
    public static DBEnvironment
    initialize(Ice.Communicator communicator, String name)
    {
	return new DBEnvironmentI(communicator, name);
    }
}