~rdoering/ubuntu/karmic/erlang/fix-535090

« back to all changes in this revision

Viewing changes to lib/cosProperty/doc/src/CosPropertyService_PropertyNamesIterator.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090215164252-q5x4rcf8a5pbesb1
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="latin1" ?>
 
2
<!DOCTYPE erlref SYSTEM "erlref.dtd">
 
3
 
 
4
<erlref>
 
5
  <header>
 
6
    <copyright>
 
7
      <year>2000</year>
 
8
      <year>2007</year>
 
9
      <holder>Ericsson AB, All Rights Reserved</holder>
 
10
    </copyright>
 
11
    <legalnotice>
 
12
  The contents of this file are subject to the Erlang Public License,
 
13
  Version 1.1, (the "License"); you may not use this file except in
 
14
  compliance with the License. You should have received a copy of the
 
15
  Erlang Public License along with this software. If not, it can be
 
16
  retrieved online at http://www.erlang.org/.
 
17
 
 
18
  Software distributed under the License is distributed on an "AS IS"
 
19
  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 
20
  the License for the specific language governing rights and limitations
 
21
  under the License.
 
22
 
 
23
  The Initial Developer of the Original Code is Ericsson AB.
 
24
    </legalnotice>
 
25
 
 
26
    <title>CosPropertyService_&shy;PropertyNamesIterator</title>
 
27
    <shorttitle>..._PropertyNamesIterator</shorttitle>
 
28
    <prepared>Niclas Eklund</prepared>
 
29
    <responsible>Niclas Eklund</responsible>
 
30
    <docno></docno>
 
31
    <approved>Niclas Eklund</approved>
 
32
    <checked></checked>
 
33
    <date>2000-07-25</date>
 
34
    <rev>1.0</rev>
 
35
  </header>
 
36
  <module>CosPropertyService_PropertyNamesIterator</module>
 
37
  <modulesummary>This module implements the OMG CosPropertyService::PropertyNamesIterator interface.</modulesummary>
 
38
  <description>
 
39
    <p>To get access to the record definitions for the structures use:      <br></br>
 
40
<c>-include_lib("cosProperty/include/CosPropertyService.hrl").</c></p>
 
41
  </description>
 
42
  <funcs>
 
43
    <func>
 
44
      <name>reset(Iterator) -> ok</name>
 
45
      <fsummary>Reset the position to the first property name</fsummary>
 
46
      <type>
 
47
        <v>Iterator = #objref</v>
 
48
      </type>
 
49
      <desc>
 
50
        <p>This operation resets the position to the first property name. </p>
 
51
      </desc>
 
52
    </func>
 
53
    <func>
 
54
      <name>next_one(Iterator) -> Reply</name>
 
55
      <fsummary>Return true if a Property Name exists at the current  position and the out parameter is a valid Property Name. Otherwise false and a non-valid Property Name</fsummary>
 
56
      <type>
 
57
        <v>Iterator = #objref</v>
 
58
        <v>Reply = {boolean(), Name}</v>
 
59
        <v>Name = string()</v>
 
60
      </type>
 
61
      <desc>
 
62
        <p>This operation returns true if a Property Name exists at the current 
 
63
          position and the out parameter is a valid Property Name. 
 
64
          If false is returned the out parameter is a non-valid Property Name.</p>
 
65
      </desc>
 
66
    </func>
 
67
    <func>
 
68
      <name>next_n(Iterator, HowMany) -> Reply</name>
 
69
      <fsummary>Return <c>HowMany</c>Property Names and a boolean which is true if additional Property Names exists</fsummary>
 
70
      <type>
 
71
        <v>Iterator = #objref</v>
 
72
        <v>HowMany = long()</v>
 
73
        <v>Reply = {boolean(), [Name]}</v>
 
74
        <v>Name = string()</v>
 
75
      </type>
 
76
      <desc>
 
77
        <p>This operation returns true if the requested number of Property Names can be
 
78
          delivered and there are additional property names. If false is returned a 
 
79
          sequence of max <c>HowMany</c> property names will be returned and no 
 
80
          more Property Names can be delivered. </p>
 
81
      </desc>
 
82
    </func>
 
83
    <func>
 
84
      <name>destroy(Iterator) -> ok</name>
 
85
      <fsummary>Terminate the target object</fsummary>
 
86
      <type>
 
87
        <v>Iterator = #objref</v>
 
88
      </type>
 
89
      <desc>
 
90
        <p>This operation will terminate the Iterator and all subsequent calls
 
91
          will fail. </p>
 
92
      </desc>
 
93
    </func>
 
94
  </funcs>
 
95
  
 
96
</erlref>
 
97