You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Adapter.java 250B

1234567891011121314
  1. package test.aop;
  2. public class Adapter extends AbstractAdapter<String> {
  3. @Override
  4. public String execute(String message) {
  5. return message;
  6. }
  7. public static void main(String []argv) {
  8. new Adapter().execute("hello");
  9. }
  10. }