KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > examples > connectivity > Server


1 /**************************************************************************************
2  * Copyright (c) Jonas BonŽr, Alexandre Vasseur. All rights reserved. *
3  * http://aspectwerkz.codehaus.org *
4  * ---------------------------------------------------------------------------------- *
5  * The software in this package is published under the terms of the LGPL license *
6  * a copy of which has been included with this distribution in the license.txt file. *
7  **************************************************************************************/

8 package examples.connectivity;
9
10 /**
11  * Starts up the aspectwerkz system (which starts up the remote proxy server).
12  *
13  * @author <a HREF="mailto:jboner@codehaus.org">Jonas BonŽr </a>
14  */

15 public class Server {
16     public static void main(String JavaDoc[] args) {
17         Target target = new Target();
18         ((Test1) target).test1(); // to start up the AspectWerkz system, just a trigger
19
}
20 }
Popular Tags