Last change
on this file was 111, checked in by ruud, 2 months ago |
Modifications for automatic java to python conversion. Overloaded methods now have different names.
|
File size:
372 bytes
|
Line | |
---|
1 | # Generated from java by J2P
|
---|
2 | from __future__ import annotations
|
---|
3 | from abc import ABC
|
---|
4 | from uri.uri import URI
|
---|
5 |
|
---|
6 |
|
---|
7 | class Reference(ABC):
|
---|
8 | '''
|
---|
9 | A reference is a URI to a Connectable object.
|
---|
10 |
|
---|
11 |
|
---|
12 | '''
|
---|
13 |
|
---|
14 | def getURI(self) -> URI:
|
---|
15 | '''
|
---|
16 | @return URI address to which a connection can be made with the real
|
---|
17 | object.
|
---|
18 |
|
---|
19 | '''
|
---|
20 | pass
|
---|
21 |
|
---|
22 | def __init__(self):
|
---|
23 | super().__init__()
|
---|
Note:
See
TracBrowser
for help on using the repository browser.