KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > mof > Model > ModelElementOperations


1 package org.omg.mof.Model;
2
3
4 /**
5 * org/omg/mof/Model/ModelElementOperations.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from mof1.idl
8 * lundi 17 mars 2003 15 h 01 CET
9 */

10
11
12 // end of interface ModelElementClass
13
public interface ModelElementOperations extends org.omg.mof.Model.ModelElementClassOperations
14 {
15
16   //
17
String JavaDoc name () throws org.omg.mof.Reflective.MofError;
18   void set_name (String JavaDoc new_value) throws org.omg.mof.Reflective.MofError;
19
20   //
21
String JavaDoc annotation () throws org.omg.mof.Reflective.MofError;
22   void set_annotation (String JavaDoc new_value) throws org.omg.mof.Reflective.MofError;
23
24   //
25
String JavaDoc[] qualified_name () throws org.omg.mof.Reflective.MofError;
26
27   //
28
org.omg.mof.Model.Namespace container () throws org.omg.mof.Reflective.NotSet, org.omg.mof.Reflective.MofError;
29   void set_container (org.omg.mof.Model.Namespace new_value) throws org.omg.mof.Reflective.MofError;
30   void unset_container () throws org.omg.mof.Reflective.MofError;
31
32   //
33
org.omg.mof.Model.ModelElement[] required_elements () throws org.omg.mof.Reflective.MofError;
34   void set_required_elements (org.omg.mof.Model.ModelElement[] new_value) throws org.omg.mof.Reflective.MofError;
35   void add_required_elements (org.omg.mof.Model.ModelElement new_element) throws org.omg.mof.Reflective.MofError;
36   void modify_required_elements (org.omg.mof.Model.ModelElement old_element, org.omg.mof.Model.ModelElement new_element) throws org.omg.mof.Reflective.NotFound, org.omg.mof.Reflective.MofError;
37   void remove_required_elements (org.omg.mof.Model.ModelElement old_element) throws org.omg.mof.Reflective.NotFound, org.omg.mof.Reflective.MofError;
38
39   //
40
org.omg.mof.Model.Constraint[] constraints () throws org.omg.mof.Reflective.MofError;
41   void set_constraints (org.omg.mof.Model.Constraint[] new_value) throws org.omg.mof.Reflective.MofError;
42   void add_constraints (org.omg.mof.Model.Constraint new_element) throws org.omg.mof.Reflective.MofError;
43   void modify_constraints (org.omg.mof.Model.Constraint old_element, org.omg.mof.Model.Constraint new_element) throws org.omg.mof.Reflective.NotFound, org.omg.mof.Reflective.MofError;
44   void remove_constraints (org.omg.mof.Model.Constraint old_element) throws org.omg.mof.Reflective.NotFound, org.omg.mof.Reflective.MofError;
45 } // interface ModelElementOperations
46
Popular Tags