/*
 * File:          F_Impl.java
 * Symbol:        Inherit.F-v1.1
 * Symbol Type:   class
 * Babel Version: 0.10.2
 * Description:   Server-side implementation for Inherit.F
 * 
 * WARNING: Automatically generated; only changes within splicers preserved
 * 
 * babel-version = 0.10.2
 */

package Inherit;

import Inherit.A;
import sidl.ClassInfo;
import Inherit.C;
import Inherit.B;
import sidl.BaseInterface;
import sidl.BaseClass;

// DO-NOT-DELETE splicer.begin(Inherit.F._imports)
// Put additional imports here...
// DO-NOT-DELETE splicer.end(Inherit.F._imports)

/**
 * Symbol "Inherit.F" (version 1.1)
 */
public class F_Impl extends F
{

  // DO-NOT-DELETE splicer.begin(Inherit.F._data)
  // Put additional private data here...
  // DO-NOT-DELETE splicer.end(Inherit.F._data)

  static { 
  // DO-NOT-DELETE splicer.begin(Inherit.F._load)
  // Put load function implementation here...
  // DO-NOT-DELETE splicer.end(Inherit.F._load)
  }

  /**
   * User defined constructor
   */
  public F_Impl(long IORpointer){
    super(IORpointer);
    // DO-NOT-DELETE splicer.begin(Inherit.F.F)
    // add construction details here
    // DO-NOT-DELETE splicer.end(Inherit.F.F)
  }

  /**
   * User defined destructing method
   */
  public void finalize() throws Throwable{
    super.finalize();
    // DO-NOT-DELETE splicer.begin(Inherit.F._dtor)
    // add destruction details here
    // DO-NOT-DELETE splicer.end(Inherit.F._dtor)
  }

  // user defined static methods: (none)

  // user defined non-static methods:
  /**
   * Method:  f[]
   */
  public java.lang.String f_Impl () 
  {
    // DO-NOT-DELETE splicer.begin(Inherit.F.f)
    // insert implementation here
    return new java.lang.String("F.f");
    // DO-NOT-DELETE splicer.end(Inherit.F.f)
  }

  /**
   * Method:  a[]
   */
  public java.lang.String a_Impl () 
  {
    // DO-NOT-DELETE splicer.begin(Inherit.F.a)
    // insert implementation here
    return new java.lang.String("F.a");
    // DO-NOT-DELETE splicer.end(Inherit.F.a)
  }

  /**
   * Method:  b[]
   */
  public java.lang.String b_Impl () 
  {
    // DO-NOT-DELETE splicer.begin(Inherit.F.b)
    // insert implementation here
    return new java.lang.String("F.b");
    // DO-NOT-DELETE splicer.end(Inherit.F.b)
  }


  // DO-NOT-DELETE splicer.begin(Inherit.F._misc)
  // Put miscellaneous code here
  // DO-NOT-DELETE splicer.end(Inherit.F._misc)

} // end class F

