1 15 package org.apache.hivemind.service.impl; 16 17 21 public class IgnoreStaticAndPrivateMethodsBean implements BeanInterface 22 { 23 public IgnoreStaticAndPrivateMethodsBean() 24 { 25 privateMethod(); 26 } 27 28 public String beanMethod() 29 { 30 return null; 31 } 32 33 public String interfaceMethod() 34 { 35 return null; 36 } 37 38 public static void staticMethod() 39 { 40 } 42 43 void packagePrivateMethod() 44 { 45 } 47 48 private void privateMethod() 49 { 50 } 52 } | Popular Tags |