1 16 package org.apache.commons.attributes.test; 17 18 22 public class Sample extends SuperSample implements SampleIFJoin { 23 24 27 public Object field; 28 29 public Object noAttributesInSubClass; 30 31 34 public void someMethod () { 35 36 } 37 38 42 public Integer methodWithAttributes (int param1, int param2) { 43 return null; 44 } 45 46 49 public void someMethod (int parameter) { 50 51 } 52 53 56 public void methodWithNamedParameters () { 57 58 } 59 60 public void methodWithNoAttributes () { 61 } 62 63 66 public static class InnerSample { 67 } 68 69 72 private void privateMethod () { 73 74 } 75 } | Popular Tags |