mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 11:29:28 +07:00
25 lines
532 B
Python
25 lines
532 B
Python
# encoding: utf-8
|
|
# module com.just.like.java calls itself java
|
|
# from PythonLibs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
# by generator 1.135
|
|
# no doc
|
|
# no imports
|
|
|
|
# no functions
|
|
# classes
|
|
|
|
from object import object
|
|
|
|
class LikeJavaClass(object):
|
|
""" LikeJavaClass() """
|
|
def likeJavaInstanceMethod(self, i):
|
|
""" likeJavaInstanceMethod(self: LikeJavaClass, i: int) -> int """
|
|
pass
|
|
|
|
@staticmethod
|
|
def likeJavaStaticMethod(i):
|
|
""" likeJavaStaticMethod(i: int) """
|
|
pass
|
|
|
|
|