KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > mof > Reflective > BadPosition


1 package org.omg.mof.Reflective;
2
3
4 /**
5 * org/omg/mof/Reflective/BadPosition.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from Reflective.idl
8 * lundi 17 mars 2003 15 h 00 CET
9 */

10
11 public final class BadPosition extends org.omg.CORBA.UserException JavaDoc
12 {
13   public int current_size = (int)0;
14
15   public BadPosition ()
16   {
17     super(BadPositionHelper.id());
18   } // ctor
19

20   public BadPosition (int _current_size)
21   {
22     super(BadPositionHelper.id());
23     current_size = _current_size;
24   } // ctor
25

26
27   public BadPosition (String JavaDoc $reason, int _current_size)
28   {
29     super(BadPositionHelper.id() + " " + $reason);
30     current_size = _current_size;
31   } // ctor
32

33 } // class BadPosition
34
Popular Tags