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 abstract public class Context { 9 10 abstract public String context_name(); 11 abstract public org.omg.CORBA.Context parent(); 12 abstract public org.omg.CORBA.Context create_child( 13 String child_context_name); 14 abstract public void set_one_value(String prop_name, 15 org.omg.CORBA.Any value); 16 abstract public void set_values(org.omg.CORBA.NVList values); 17 abstract public void delete_values(String prop_name); 18 abstract public org.omg.CORBA.NVList get_values(String start_scope, 19 int op_flags, String pattern); 20 }