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.

PointcutBinding.java 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* *******************************************************************
  2. * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * PARC initial implementation
  11. * ******************************************************************/
  12. package org.aspectj.ajdt.internal.compiler.lookup;
  13. import org.aspectj.org.eclipse.jdt.internal.compiler.ast.ASTNode;
  14. import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.Binding;
  15. /**
  16. */
  17. public class PointcutBinding extends Binding {
  18. /* (non-Javadoc)
  19. * @see org.eclipse.jdt.internal.compiler.lookup.BindingPattern#bindingType()
  20. */
  21. public int bindingType() {
  22. return 0;
  23. }
  24. /* (non-Javadoc)
  25. * @see org.eclipse.jdt.internal.compiler.lookup.BindingPattern#readableName()
  26. */
  27. public char[] readableName() {
  28. return null;
  29. }
  30. /* (non-Javadoc)
  31. * @see org.aspectj.org.eclipse.jdt.internal.compiler.lookup.Binding#kind()
  32. */
  33. public int kind() {
  34. return ASTNode.Bit14;
  35. }
  36. }