blob: 1ba6b3a3825a76284a371afe770ae0504e28eb6d [file] [log] [blame]
Tor Norbye1aa2e092014-08-20 17:01:23 -07001# encoding: utf-8
2# module com.just.like.java calls itself java
3# from PythonLibs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
4# by generator 1.135
5# no doc
6# no imports
7
8# no functions
9# classes
10
11from object import object
12
13class LikeJavaClass(object):
14 """ LikeJavaClass() """
15 def likeJavaInstanceMethod(self, i):
16 """ likeJavaInstanceMethod(self: LikeJavaClass, i: int) -> int """
17 pass
18
19 @staticmethod
20 def likeJavaStaticMethod(i):
21 """ likeJavaStaticMethod(i: int) """
22 pass
23
24