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