?? test.java
字號(hào):
package examples.finder;/* * @(#)Test.java * * 03L7246 (c) Copyright IBM Corp. 1996, 1998 * * The program is provided "as is" without any warranty express or * implied, including the warranty of non-infringement and the implied * warranties of merchantibility and fitness for a particular purpose. * IBM will not be liable for any damages suffered by you as a result * of using the Program. In no event will IBM be liable for any * special, indirect or consequential damages or lost profits even if * IBM has been advised of the possibility of their occurrence. IBM * will not be liable for any third party claims against you. */import com.ibm.aglet.*;public class Test extends Aglet { AgletProxy _finder; Message lookup = new Message("Lookup", "Traveller"); public boolean handleMessage(Message msg) { try { AgletProxy proxy = (AgletProxy)_finder.sendMessage(lookup); System.out.println(proxy.getAgletInfo()); } catch (Exception ex) { ex.printStackTrace(); } return true; } public void onCreation(Object init) { _finder = (AgletProxy)getAgletContext().getProperty("finder"); try { AgletProxy proxy = (AgletProxy)_finder.sendMessage(lookup); System.out.println(proxy.getAgletInfo()); } catch (Exception ex) { ex.printStackTrace(); } }}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -