/**
<p>
<ul>
<li> <b>Java Class</b> _example_Hello
<li> <b>Source File</b> _example_Hello.java
<li> <b>IDL Source File</b> hello.idl
<li> <b>IDL Absolute Name</b> ::Hello
<li> <b>Repository Identifier</b> IDL:Hello:1.0
</ul>
<b>IDL definition:</b>
<pre>
    interface Hello {
      void hello();
    };
</pre>
</p>
*/
public class _example_Hello extends _sk_Hello {
  /** Construct a persistently named object. */
  public _example_Hello(java.lang.String name) {
    super(name);
  }
  /** Construct a transient object. */
  public _example_Hello() {
    super();
  }
  /**
  <p>
  Operation: <b>::Hello::hello</b>.
  <pre>
    void hello();
  </pre>
  </p>
  */
  public void hello() {
    // implement operation...
  }
}

