Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cospropertyservice_propertysetdeffactory(3erl) [linux man page]

CosPropertyService_PropertySetDefFactory(3erl)		     Erlang Module Definition		    CosPropertyService_PropertySetDefFactory(3erl)

NAME
CosPropertyService_PropertySetDefFactory - This module implements the OMG CosPropertyService::PropertySetDefFactory interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosProperty/include/CosPropertyService.hrl"). EXPORTS
create_propertysetdef(Factory) -> Types Factory = PropertySetDef = #objref This operation creates a new PropertySetDef with no predefined settings. create_constrained_propertysetdef(Factory, PropertyTypes, PropertyDefs) -> Reply Types Factory = PropertySetDef = #objref PropertyTypes = [CORBA::TypeCode] PropertyDefs = [#'CosPropertyService_PropertyDef'{property_name = Name, property_value = Value, property_mode = Mode}] Name = string() Value = #any Mode = normal | read_only | fixed_normal | fixed_readonly | undefined Reply = {'EXCEPTION', #CosPropertyService_ConstraintNotSupported{}} | PropertySetDef PropertySetDef = #objref This operation creates a new PropertySetDef with specific constraints. PropertyTypes states allowed TypeCode's and PropertyDefs valid CosPropertyService::PropertyDef data. create_initial_propertysetdef(Factory, PropertyDefs) -> Reply Types Factory = PropertySetDef = #objref PropertyDefs = [#'CosPropertyService_PropertyDef'{property_name = Name, property_value = Value, property_mode = Mode}] Name = string() Value = #any Mode = normal | read_only | fixed_normal | fixed_readonly | undefined Reply = {'EXCEPTION', #CosPropertyService_MultipleExceptions{exceptions = Excs}} | PropertySetDef Excs = [#'CosPropertyService_PropertyException{reason = Reason, failing_property_name = Name}] Reason = invalid_property_name | conflicting_property | property_not_found | unsupported_type_code | unsupported_property | unsupported_mode | fixed_property | read_only_property PropertySetDef = #objref This operation creates a new PropertySetDef with specific initial properties. Ericsson AB cosProperty 1.1.13 CosPropertyService_PropertySetDefFactory(3erl)

Check Out this Related Man Page

CosPropertyService_PropertyNamesIterator(3erl)		     Erlang Module Definition		    CosPropertyService_PropertyNamesIterator(3erl)

NAME
CosPropertyService_PropertyNamesIterator - This module implements the OMG CosPropertyService::PropertyNamesIterator interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosProperty/include/CosPropertyService.hrl"). EXPORTS
reset(Iterator) -> ok Types Iterator = #objref This operation resets the position to the first property name. next_one(Iterator) -> Reply Types Iterator = #objref Reply = {boolean(), Name} Name = string() This operation returns true if a Property Name exists at the current position and the out parameter is a valid Property Name. If false is returned the out parameter is a non-valid Property Name. next_n(Iterator, HowMany) -> Reply Types Iterator = #objref HowMany = long() Reply = {boolean(), [Name]} Name = string() This operation returns true if the requested number of Property Names can be delivered and there are additional property names. If false is returned a sequence of max HowMany property names will be returned and no more Property Names can be delivered. destroy(Iterator) -> ok Types Iterator = #objref This operation will terminate the Iterator and all subsequent calls will fail. Ericsson AB cosProperty 1.1.13 CosPropertyService_PropertyNamesIterator(3erl)
Man Page