01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: abstract public class NVList {
07:
08: abstract public int count();
09:
10: abstract public org.omg.CORBA.NamedValue add(int flags);
11:
12: abstract public org.omg.CORBA.NamedValue add_item(String item_name,
13: int flags);
14:
15: abstract public org.omg.CORBA.NamedValue add_value(String name,
16: org.omg.CORBA.Any value, int flags);
17:
18: abstract public org.omg.CORBA.NamedValue item(int index)
19: throws org.omg.CORBA.Bounds;
20:
21: abstract public void remove(int index) throws org.omg.CORBA.Bounds;
22: }
|