📄 _sellerstub.java
字号:
package BookStore;
/**
* <ul>
* <li> <b>IDL Source</b> "BookStore.idl"
* <li> <b>IDL Name</b> ::BookStore::Seller
* <li> <b>Repository Id</b> IDL:BookStore/Seller:1.0
* </ul>
* <b>IDL definition:</b>
* <pre>
* interface Seller {
...
};
* </pre>
*/
public class _SellerStub extends com.inprise.vbroker.CORBA.portable.ObjectImpl implements BookStore.Seller {
final public static java.lang.Class _opsClass = BookStore.SellerOperations.class;
public java.lang.String[] _ids () {
return __ids;
}
private static java.lang.String[] __ids = {
"IDL:BookStore/Seller:1.0"
};
/**
* <pre>
* BookStore.BookIterator queryByConditions (in BookStore.ConditionSeq conditions);
* </pre>
*/
public BookStore.BookIterator queryByConditions (BookStore.Condition[] conditions) {
while (true) {
if (!_is_local()) {
org.omg.CORBA.portable.OutputStream _output = null;
org.omg.CORBA.portable.InputStream _input = null;
BookStore.BookIterator _result;
try {
_output = this._request("queryByConditions", true);
BookStore.ConditionSeqHelper.write(_output, conditions);
_input = this._invoke(_output);
_result = BookStore.BookIteratorHelper.read(_input);
return _result;
}
catch (org.omg.CORBA.portable.ApplicationException _exception) {
final org.omg.CORBA.portable.InputStream in = _exception.getInputStream();
java.lang.String _exception_id = _exception.getId();
throw new org.omg.CORBA.UNKNOWN("Unexpected User Exception: " + _exception_id);
}
catch (org.omg.CORBA.portable.RemarshalException _exception) {
continue;
}
finally {
this._releaseReply(_input);
}
} else {
final org.omg.CORBA.portable.ServantObject _so = _servant_preinvoke("queryByConditions", _opsClass);
if (_so == null) {
continue;
}
final BookStore.SellerOperations _self = (BookStore.SellerOperations)_so.servant;
try {
return _self.queryByConditions(conditions);
}
finally {
_servant_postinvoke(_so);
}
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -