Attributes in CORBA IDL

(W3C WSDWG Attributes TF)

Jeff Mischkinsky

Oracle logo

Oracle Corporation

27 Jun 2003

IDL attributes

Example

// IDL example
interface foo {
   attribute long myattr;
   };

// Java
public interface foo extends
     org.omg.CORBA.portable.IDLentity {
     int myattr();
     void myattr(int p1);
}