このページはEtoJ逐語翻訳フィルタによって翻訳生成されました。

翻訳前ページへ


null
Language

The 解放する/自由な and Open 生産性 控訴
解放(する)d: Apache OpenOffice 4.1.16

API

SDK

Tips ‘n’ Tricks

Miscellaneous

IEnvironment (Java UNO Runtime 言及/関連)
UDK 3.2.7 Java API 言及/関連

com.sun.星/主役にする.uno
Interface IEnvironment


Deprecated. As of UDK 3.2, this interface is deprecated, without 申し込む/申し出ing a 交替/補充.

public interface IEnvironment

The interface 器具/実施するd by UNO 環境s.

With this interface, 反対するs can be 登録(する)d at and 取り消すd from an 環境.

See Also:
IBridge, IQueryInterface, UnoRuntime

Method 要約
 反対する getContext()
          Deprecated. Gets the 状況 of this 環境.
 String getName()
          Deprecated. Gets the 指名する of this 環境.
 反対する getRegisteredInterface(String oid, Type type)
          Deprecated. Retrieves a 登録(する)d 反対する, 明示するd by OID and UNO interface type.
 String getRegisteredObjectIdentifier(反対する 反対する)
          Deprecated. Retrieves the OID for a 登録(する)d 反対する.
 無効の 名簿(に載せる)/表(にあげる)()
          Deprecated. 名簿(に載せる)/表(にあげる)s the 登録(する)d 反対するs to System.out.
 反対する registerInterface(反対する 反対する, String[] oid, Type type)
          Deprecated. 登録(する)s one UNO interface facet of an 反対する.
 無効の revokeInterface(String oid, Type type)
          Deprecated. Explicitly 取り消すs a UNO interface facet.
 

Method 詳細(に述べる)

getContext

反対する getContext()
Deprecated. 
Gets the 状況 of this 環境.

Returns:
the 状況 of this 環境

getName

String getName()
Deprecated. 
Gets the 指名する of this 環境.

Returns:
the 指名する of this 環境

registerInterface

反対する registerInterface(反対する 反対する,
                         String[] oid,
                         Type type)
Deprecated. 
登録(する)s one UNO interface facet of an 反対する.

Such an 反対する will typically be one of three things:

  • A 地元の Java 反対する, to be mapped out of this 環境 経由で a given 橋(渡しをする).
  • A proxy 反対する, mapped into this 環境 経由で some 橋(渡しをする) B1, and now to be mapped out of this 環境 経由で a given 橋(渡しをする) B2.
  • A proxy 反対する, created as a remote 反対する is mapped into this 環境 経由で a given 橋(渡しをする).

The 反対する 現実に 登録(する)d may 異なる from the 明示するd 反対する that is passed as an argument. This enables an 環境 to work in a multi-threaded シナリオ, where two threads can call registerInterface for the same combination of oid and type at the same time; the race 条件 is solved by letting one of the calls 登録(する) its argument 反対する, ignoring the argument 反対する of the other call, and letting both calls return the same 反対する.

The 登録(する)d 反対する is held only weakly by the 環境. After a call to registerInterface, a call to getRegisteredInterface only 後継するs as long as the 登録(する)d 反対する is still 堅固に reachable, and the 登録(する)d 反対する has not been explicitly 取り消すd by calling revokeInterface.

Parameters:
反対する - the 反対する to 登録(する); must be 非,不,無-null
oid - in-out parameter 含む/封じ込めるing the OID of 反対する. This must be a 非,不,無-null 言及/関連 to an array of length at least one; the zeroth element is used to pass the argument in and out. If the zeroth element is null on input, the OID will be 計算するd and passed out (that is, the zeroth element will never be null upon normal return).
type - the UNO interface type to 登録(する). This argument must be 非,不,無-null, and must denote a UNO interface type. The given 反対する should 器具/実施する this type.
Returns:
the 登録(する)d 反対する (may 異なる from the 反対する passed in); will never be null

revokeInterface

無効の revokeInterface(String oid,
                     Type type)
Deprecated. 
Explicitly 取り消すs a UNO interface facet.

Calls to registerInterface and revokeInterface must be paired. A facet is only 除去するd from the 環境 when it has been 取り消すd as often as it has been 登録(する)d. This may change in the 未来, so that a facet would be 除去するd upon the first call to revokeInterface (and calls to revokeInterface would no longer be necessary if the calling code does not want to 支配(する)/統制する the temporal extent of the 登録).

It is not an error if the 明示するd facet is not 登録(する)d at this 環境 (either because no corresponding 反対する has ever been 登録(する)d, or it has been explicitly 取り消すd, or it is no longer 堅固に reachable). In such a 事例/患者, this method 簡単に does nothing.

Parameters:
oid - the OID of the 反対する to 取り消す; must be 非,不,無-null
type - the UNO interface type of the 反対する to 取り消す. This argument must be 非,不,無-null, and must denote a UNO interface type.

getRegisteredInterface

反対する getRegisteredInterface(String oid,
                              Type type)
Deprecated. 
Retrieves a 登録(する)d 反対する, 明示するd by OID and UNO interface type.

Parameters:
oid - the OID of the 反対する to retrieve; must be 非,不,無-null
type - the UNO interface type of the 反対する to retrieve. This argument must be 非,不,無-null, and must denote a UNO interface type.
Returns:
the 登録(する)d 反対する, or null if 非,不,無 is 設立する

getRegisteredObjectIdentifier

String getRegisteredObjectIdentifier(反対する 反対する)
Deprecated. 
Retrieves the OID for a 登録(する)d 反対する.

Parameters:
反対する - a 登録(する)d 反対する; must be 非,不,無-null
Returns:
the OID of the 反対する; will never be null

名簿(に載せる)/表(にあげる)

無効の 名簿(に載せる)/表(にあげる)()
Deprecated. 
名簿(に載せる)/表(にあげる)s the 登録(する)d 反対するs to System.out.

This is for debug 目的s.


UDK 3.2.7 Java API 言及/関連

The ASF

Copyright & License | Privacy | 接触する Us | 寄付する | Thanks

Apache, OpenOffice, OpenOffice.org and the seagull logo are 登録(する)d trademarks of The Apache ソフトウェア 創立/基礎. The ASF logo is a trademark of The Apache ソフトウェア 創立/基礎. Other 指名するs appearing on the 場所/位置 may be trademarks of their 各々の owners.