#
# File:          J_Impl.py
# Symbol:        Inherit.J-v1.1
# Symbol Type:   class
# Babel Version: 0.10.2
# Description:   Implementation of sidl class Inherit.J in Python.
# 
# WARNING: Automatically generated; changes will be lost
# 
# babel-version = 0.10.2
#


# DO-NOT-DELETE splicer.begin(_initial)
# Put your code here...
# DO-NOT-DELETE splicer.end(_initial)

import Inherit.E2
import Inherit.A
import sidl.ClassInfo
import Inherit.C
import Inherit.J
import Inherit.B
import sidl.BaseInterface
import sidl.BaseClass

# DO-NOT-DELETE splicer.begin(_before_type)
# Put your code here...
# DO-NOT-DELETE splicer.end(_before_type)

class J:

  # All calls to sidl methods should use __IORself

  def __init__(self, IORself):
    self.__IORself = IORself
    # DO-NOT-DELETE splicer.begin(__init__)
    # Put your code here...
    # DO-NOT-DELETE splicer.end(__init__)

  def j(self):
    #
    # sidl EXPECTED RETURN VALUE(s)
    # =============================
    # string _return
    #

    # DO-NOT-DELETE splicer.begin(j)
    # Put your code here...
    return "J.j"
    # DO-NOT-DELETE splicer.end(j)

  def e(self):
    #
    # sidl EXPECTED RETURN VALUE(s)
    # =============================
    # string _return
    #

    # DO-NOT-DELETE splicer.begin(e)
    # Put your code here...
    return "J.E2.e"
    # DO-NOT-DELETE splicer.end(e)

  def c(self):
    #
    # sidl EXPECTED RETURN VALUE(s)
    # =============================
    # string _return
    #

    # DO-NOT-DELETE splicer.begin(c)
    # Put your code here...
    return "J.E2.c"
    # DO-NOT-DELETE splicer.end(c)

  def a(self):
    #
    # sidl EXPECTED RETURN VALUE(s)
    # =============================
    # string _return
    #

    # DO-NOT-DELETE splicer.begin(a)
    # Put your code here...
    return "J.a"
    # DO-NOT-DELETE splicer.end(a)

  def b(self):
    #
    # sidl EXPECTED RETURN VALUE(s)
    # =============================
    # string _return
    #

    # DO-NOT-DELETE splicer.begin(b)
    # Put your code here...
    return "J.b"
    # DO-NOT-DELETE splicer.end(b)

# DO-NOT-DELETE splicer.begin(_final)
# Put your code here...
# DO-NOT-DELETE splicer.end(_final)
