~ubuntu-branches/ubuntu/raring/zeroc-icee-java/raring

« back to all changes in this revision

Viewing changes to src/Ice/InitializationData.java

  • Committer: Bazaar Package Importer
  • Author(s): Francisco Moya
  • Date: 2008-08-07 23:05:39 UTC
  • mfrom: (3.1.2 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080807230539-iiuezo41bclg5yxy
Tags: 1.2.0-3
* Upgraded packaging standards.
* Removed unsatisfiable build dependency (Closes: #487027).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// **********************************************************************
 
2
//
 
3
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
 
4
//
 
5
// This copy of Ice-E is licensed to you under the terms described in the
 
6
// ICEE_LICENSE file included in this distribution.
 
7
//
 
8
// **********************************************************************
 
9
 
 
10
package Ice;
 
11
 
 
12
public final class InitializationData
 
13
{
 
14
    public InitializationData()
 
15
    {
 
16
    }
 
17
    
 
18
    public java.lang.Object
 
19
    ice_clone()
 
20
    {
 
21
        InitializationData clone = new InitializationData();
 
22
        clone.properties = properties;
 
23
        clone.logger = logger;
 
24
        return clone;
 
25
    }
 
26
    
 
27
 
 
28
    public Properties properties;
 
29
    public Logger logger;
 
30
}