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.

A.java 1001B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import java.util.Hashtable;
  2. import javax.naming.Context;
  3. import javax.naming.NamingException;
  4. import javax.naming.directory.DirContext;
  5. import javax.naming.directory.InitialDirContext;
  6. /*******************************************************************************
  7. * Copyright (c) 2010 Contributors
  8. * All rights reserved. This program and the accompanying materials
  9. * are made available under the terms of the Eclipse Public License v1.0
  10. * which accompanies this distribution, and is available at
  11. * http://www.eclipse.org/legal/epl-v10.html
  12. *
  13. * Contributors:
  14. * Andy Clement - Repro test case
  15. * Abraham Nevado
  16. *******************************************************************************/
  17. public class A implements java.io.Serializable{
  18. public A()
  19. {
  20. }
  21. public void doSomething() throws Exception
  22. {
  23. }
  24. public static void main(String[] args) throws Exception {
  25. A lc = new A();
  26. lc.doSomething();
  27. }
  28. }