summaryrefslogtreecommitdiff
path: root/java/src/Freeze/Util.java
blob: f644b6c5ee5ea6a885c956f1365d3123c611904b (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
// ZeroC, 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);
    }
}