KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > CORBA > ArrayDefOperations


1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
2        duplicate and use this code are hereby granted provided that this
3        copyright notice is included.
4 *****/

5
6 package org.omg.CORBA;
7
8 public interface ArrayDefOperations extends org.omg.CORBA.IDLTypeOperations JavaDoc {
9
10     public int length();
11     public void length(int length);
12
13     public org.omg.CORBA.TypeCode JavaDoc element_type();
14
15     public org.omg.CORBA.IDLType JavaDoc element_type_def();
16     public void element_type_def(org.omg.CORBA.IDLType JavaDoc element_type_def);
17
18 }
19
Popular Tags