/testability-explorer/src/main/java/com/google/test/metric/asm/JavaVisibility.java

http://testability-explorer.googlecode.com/ · Java · 35 lines · 16 code · 4 blank · 15 comment · 9 complexity · 45bd02e03d716c0bd167081e950d4272 MD5 · raw file

  1. /*
  2. * Copyright 2008 Google Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.google.test.metric.asm;
  17. import org.objectweb.asm.Opcodes;
  18. import com.google.test.metric.Visibility;
  19. public class JavaVisibility {
  20. public static Visibility valueFromJavaBytecode(int access) {
  21. if ((access & Opcodes.ACC_PUBLIC) == Opcodes.ACC_PUBLIC) {
  22. return Visibility.PUBLIC;
  23. } else if ((access & Opcodes.ACC_PROTECTED) == Opcodes.ACC_PROTECTED) {
  24. return Visibility.PROTECTED;
  25. } else if ((access & Opcodes.ACC_PRIVATE) == Opcodes.ACC_PRIVATE) {
  26. return Visibility.PRIVATE;
  27. } else {
  28. return Visibility.PACKAGE;
  29. }
  30. }
  31. }