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

« back to all changes in this revision

Viewing changes to demo/IceE/jdk/bidir/CallbackReceiverI.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
1
// **********************************************************************
2
2
//
3
 
// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
 
3
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
4
4
//
5
5
// This copy of Ice-E is licensed to you under the terms described in the
6
6
// ICEE_LICENSE file included in this distribution.
7
7
//
8
8
// **********************************************************************
9
 
 
10
 
import Demo.*;
11
 
 
12
 
class CallbackReceiverI extends _CallbackReceiverDisp
13
 
{
14
 
    CallbackReceiverI()
15
 
    {
16
 
    }
17
 
 
18
 
    public void
19
 
    callback(int num, Ice.Current current)
20
 
    {
21
 
        System.out.println("received callback #" + num);
22
 
    }
23
 
}
 
9
 
 
10
import Demo.*;
 
11
 
 
12
class CallbackReceiverI extends _CallbackReceiverDisp
 
13
{
 
14
    CallbackReceiverI()
 
15
    {
 
16
    }
 
17
 
 
18
    public void
 
19
    callback(int num, Ice.Current current)
 
20
    {
 
21
        System.out.println("received callback #" + num);
 
22
    }
 
23
}