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.

$Proxy1.java 858B

12345678910111213141516171819202122232425262728
  1. /*******************************************************************************
  2. * Copyright (c) 2009 Contributors
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. import java.io.Serializable;
  12. import java.lang.reflect.InvocationHandler;
  13. import java.lang.reflect.Proxy;
  14. public class $Proxy1 extends Proxy implements MessageService {
  15. protected $Proxy1(InvocationHandler arg0) {
  16. super(arg0);
  17. }
  18. public Object get1(Long t) {
  19. return null;
  20. }
  21. public Object get2(Serializable s) {
  22. return null;
  23. }
  24. }