//PropertySetImpl.java import CosPropertyService.*; public class PropertySetImpl extends CosPropertyService._PropertySetImplBase { 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 yet return; } public void define_properties( CosPropertyService.Property[] nproperties) throws CosPropertyService.MultipleExceptions { //Not implemented yet return; } public int get_number_of_properties() { //Not implemented yet return(0); } public void get_all_property_names( int how_many, CosPropertyService.PropertyNamesHolder property_names, CosPropertyService.PropertyNamesIteratorHolder rest) { //Not implemented yet return; } public CosPropertyService.Any get_property_value( java.lang.String property_name) throws CosPropertyService.PropertyNotFound, CosPropertyService.InvalidPropertyName { //Not implemented yet 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 yet return(false); } public void get_all_properties( int how_many, CosPropertyService.PropertiesHolder nproperties, CosPropertyService.PropertiesIteratorHolder rest) { //Not implemented yet return; } public void delete_property( java.lang.String property_name) throws CosPropertyService.PropertyNotFound, CosPropertyService.InvalidPropertyName, CosPropertyService.FixedProperty { //Not implemented yet return; } public void delete_properties( java.lang.String[] property_names) throws CosPropertyService.MultipleExceptions { //Not implemented yet return; } public boolean delete_all_properties() { //Not implemented yet return(false); } public boolean is_property_defined( java.lang.String property_name) throws CosPropertyService.InvalidPropertyName { //Not implemented yet return(false); } }