1 28 29 30 package org.objectweb.ccm.runtime; 31 32 import org.objectweb.corba.runtime.*; 33 34 37 public class Receptacle 38 implements java.io.Serializable 39 40 { 41 static final private String _class_name = "Receptacle"; 43 public String name; 45 public String type_id; 46 public boolean is_multiple; 47 public org.omg.Components.Cookie cookie; 49 50 public 52 Receptacle() 53 { 54 name = null; 56 type_id = null; 57 is_multiple = false; 58 cookie = null; 60 } 61 62 public 64 Receptacle(String n, String tid) 65 { 66 name = n; 68 type_id = tid; 69 is_multiple = false; 70 cookie = null; 72 } 73 74 public 76 Receptacle(String n, String tid, boolean is_mult) 77 { 78 name = n; 80 type_id = tid; 81 is_multiple = is_mult; 82 cookie = null; 84 } 85 } 86 | Popular Tags |