File: ServerMIDlet.java

package info (click to toggle)
zeroc-icee-java 1.2.0-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 8,584 kB
  • ctags: 2,433
  • sloc: java: 24,708; xml: 1,845; python: 479; makefile: 22
file content (19 lines) | stat: -rw-r--r-- 611 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// **********************************************************************
//
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
//
// This copy of Ice-E is licensed to you under the terms described in the
// ICEE_LICENSE file included in this distribution.
//
// **********************************************************************

public class ServerMIDlet extends ServerBase
{
    public void
    updateProperties(Ice.Properties properties)
    {
        properties.setProperty("TestAdapter.Endpoints", 
                "default -p " + _port.getString() + " -t " + _timeout.getString());
    }
}