//CItemImpl.java //Gerard Rodriguez, January 1998, Stanford University //This file does not implement a CItem. The purpose of this class //is to make the java compiler happy by means of implementing all the //inherited methods in the object type CItem. import CosPropertyService.*; import IDLInterchange.*; public class CItemImpl extends IDLInterchange._CItemImplBase { //CosPropertyService.PropertySetImpl public void define_property( java.lang.String property_name, CosPropertyService.Any property_value) throws CosPropertyService.InvalidPropertyName, CosPropertyService.ConflictingProperty, CosPropertyService.UnsupportedTypeCode, CosPropertyService.UnsupportedProperty, CosPropertyService.ReadOnlyProperty { //Not implemented here return; } public void define_properties( CosPropertyService.Property[] nproperties) throws CosPropertyService.MultipleExceptions { //Not implemented here return; } public int get_number_of_properties() { //Not implemented here return(0); } public void get_all_property_names( int how_many, CosPropertyService.PropertyNamesHolder property_names, CosPropertyService.PropertyNamesIteratorHolder rest) { //Not implemented here return; } public CosPropertyService.Any get_property_value( java.lang.String property_name) throws CosPropertyService.PropertyNotFound, CosPropertyService.InvalidPropertyName { //Not implemented here CosPropertyService.Any any = new CosPropertyService.Any(); any.a_long(0); return(any); } public boolean get_properties( java.lang.String[] property_names, CosPropertyService.PropertiesHolder nproperties) { //Not implemented here return(false); } public void get_all_properties( int how_many, CosPropertyService.PropertiesHolder nproperties, CosPropertyService.PropertiesIteratorHolder rest) { //Not implemented here return; } public void delete_property( java.lang.String property_name) throws CosPropertyService.PropertyNotFound, CosPropertyService.InvalidPropertyName, CosPropertyService.FixedProperty { //Not implemented here return; } public void delete_properties( java.lang.String[] property_names) throws CosPropertyService.MultipleExceptions { //Not implemented here return; } public boolean delete_all_properties() { //Not implemented here return(false); } public boolean is_property_defined( java.lang.String property_name) throws CosPropertyService.InvalidPropertyName { //Not implemented here return(false); } //IDLInterchange.CItemImpl public IDLInterchange.TAccessOption GetAccessCapability()[] { //Not implemented here return(null); } public void AddAccessOptions(IDLInterchange.TAccessOption[] pOptions) { //Not implemented here return; } public void RemoveAccessOptions(IDLInterchange.TAccessOption[] pOptions) { //Not implemented here return; } public void RequestItemProperties( CosPropertyService.Any pMessageID, java.lang.String[] pPropertyNames, IDLInterchange.CItem pResultTarget) { //Not implemented here return; } public void SetItemProperties( CosPropertyService.Any pMessageID, CosPropertyService.Property[] pItem) { //Not implemented here return; } public IDLInterchange.EStatus GetStatus( CosPropertyService.Any pMessageID) { //Not implemented here IDLInterchange.EStatus estatus = EStatus.from_int(1); return(estatus); } public void CompletedRequest(CosPropertyService.Any pMessageID) { //Not implemented here return; } public void RaiseException( CosPropertyService.Any pMessageID, IDLInterchange.TException pException) { //Not implemented here return; } public void CancelRequest( CosPropertyService.Any pMessageID) throws IDLInterchange.InvalidMessageID { //Not implemented here return; } }