diff options
author | Lars Thorsen <[email protected]> | 2018-04-25 15:09:14 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2018-04-27 12:05:30 +0200 |
commit | 6bcdad20c24457393c0d9eeb385d0ff5aa872cd0 (patch) | |
tree | 63162ddfa38d92eaff2193b73277aba18160308c /lib/cosTime/doc/src/CosTime_TIO.xml | |
parent | 87b06e4ab91729f7415578c8ac0aacec28720ad9 (diff) | |
download | otp-6bcdad20c24457393c0d9eeb385d0ff5aa872cd0.tar.gz otp-6bcdad20c24457393c0d9eeb385d0ff5aa872cd0.tar.bz2 otp-6bcdad20c24457393c0d9eeb385d0ff5aa872cd0.zip |
Move the corba applcations to separate repository
All corba applications are moved to a separate repository.
E.g. orber, ic, cosEvent, cosEventDomain, cosNotifications
cosTime, cosTransactions, cosProperty and cosFileTransfer.
Diffstat (limited to 'lib/cosTime/doc/src/CosTime_TIO.xml')
-rw-r--r-- | lib/cosTime/doc/src/CosTime_TIO.xml | 109 |
1 files changed, 0 insertions, 109 deletions
diff --git a/lib/cosTime/doc/src/CosTime_TIO.xml b/lib/cosTime/doc/src/CosTime_TIO.xml deleted file mode 100644 index c01154a2c5..0000000000 --- a/lib/cosTime/doc/src/CosTime_TIO.xml +++ /dev/null @@ -1,109 +0,0 @@ -<?xml version="1.0" encoding="utf-8" ?> -<!DOCTYPE erlref SYSTEM "erlref.dtd"> - -<erlref> - <header> - <copyright> - <year>2000</year> - <year>2016</year> - <holder>Ericsson AB, All Rights Reserved</holder> - </copyright> - <legalnotice> - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - The Initial Developer of the Original Code is Ericsson AB. - </legalnotice> - - <title>CosTime_TIO</title> - <prepared>Niclas Eklund</prepared> - <responsible>Niclas Eklund</responsible> - <docno></docno> - <approved>Niclas Eklund</approved> - <checked></checked> - <date>2000-02-01</date> - <rev>1.0</rev> - </header> - <module>CosTime_TIO</module> - <modulesummary>This module implements the OMG CosTime::TIO interface.</modulesummary> - <description> - <p>To get access to the record definitions for the structures use: <br></br> -<c>-include_lib("cosTime/include/*.hrl").</c></p> - </description> - <funcs> - <func> - <name>'_get_time_interval'(TIO) -> TimeInterval</name> - <fsummary>Return the interval associated with the target object</fsummary> - <type> - <v>TIO = #objref</v> - <v>TimeInterval = #'TimeBase_IntervalT{lower_bound, upper_bound}</v> - <v>lower_bound = upper_bound = ulonglong</v> - </type> - <desc> - <p>This operation returns the interval associated with the target object.</p> - </desc> - </func> - <func> - <name>spans(TIO, UTO) -> Reply</name> - <fsummary>Return an OverlapType which describe how the interval in the target object and the timerange represented by the UTO object overlap</fsummary> - <type> - <v>TIO = UTO = OtherTIO = #objref</v> - <v>Reply = {OverlapType, OtherTIO}</v> - <v>OverlapType = 'OTContainer' | 'OTContained' | 'OTOverlap' | 'OTNoOverlap'</v> - </type> - <desc> - <p>This operation returns a <em>OverlapType</em> depending on how the interval - in the target object and the timerange represented by the UTO object - overlap. If the OverlapType is 'OTNoOverlap' the out parameter represents - the gap between the two intervals. If OverlapType is one of the others, the - out parameter represents the overlap interval. - The definitions of the OverlapType's are:</p> - <p></p> - <list type="bulleted"> - <item>'OTContainer' - target objects lower and upper limits are, - respectively, less or equal to and greater or equal to given object's.</item> - <item>'OTContained' - target objects lower and upper limits are, - respectively, greater or equal to and less or equal to given object's.</item> - <item>'OTOverlap' - target objects interval overlap given object's.</item> - <item>'OTNoOverlap' - target objects interval do not overlap given object's.</item> - </list> - </desc> - </func> - <func> - <name>overlaps(TIO, OtherTIO) -> Reply</name> - <fsummary>Return an OverlapType which describe how the interval in the target object and the timerange represented by the TIO object overlap</fsummary> - <type> - <v>TIO = OtherTIO = AnotherTIO = #objref</v> - <v>Reply = {OverlapType, AnotherTIO}</v> - <v>OverlapType = 'OTContainer' | 'OTContained' | 'OTOverlap' | 'OTNoOverlap'</v> - </type> - <desc> - <p>This operation returns a <em>OverlapType</em> depending on how the interval - in the target object and the timerange represented by the TIO object - overlap. The OverlapType's are described under spans/2.</p> - </desc> - </func> - <func> - <name>time(TIO) -> UTO</name> - <fsummary>Return a UTO in which the interval equals the time interval in the target object and time value is the midpoint of the interval</fsummary> - <type> - <v>TIO = UTO = #objref</v> - </type> - <desc> - <p>This operation returns a UTO in which the interval equals the time interval - in the target object and time value is the midpoint of the interval.</p> - </desc> - </func> - </funcs> - -</erlref> - |