Name

NVList

Synopsis

A list of NamedValue objects. NVLists can be created using the ORB.create_list() method, or the ORB.create_operation_list() method. The latter method initializes the list with NamedValues that describe the arguments to the method definition that you pass into the create_operation_list() method.

public abstract class NVList {
// Public Constructors
   public NVList();  
// Public Instance Methods
   public abstract NamedValue add( int flags);  
   public abstract NamedValue add_item(String item_name, 
        int flags);  
   public abstract NamedValue add_value(String item_name, 
        Any val, int flags);  
   public abstract int count();  
   public abstract NamedValue item(
        int index) throws org.omg.CORBA.Bounds;  
   public abstract void remove(
        int index) throws org.omg.CORBA.Bounds;  
}

Passed To

org.omg.CORBA.Context.set_values(), LocalObject._create_request(), org.omg.CORBA.Object._create_request(), ServerRequest.{arguments(), params()}, org.omg.CORBA.portable.Delegate.create_request(), org.omg.CORBA.portable.ObjectImpl._create_request()

Returned By

org.omg.CORBA.Context.get_values(), org.omg.CORBA.ORB.{create_list(), create_operation_list()}, Request.arguments()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.