View Javadoc
1 package attrib4j.examples; 2 3 /*** 4 * Just a silly simple class to see if the parsing logic can handle this 5 * specific case used in AspectWerkz 6 * 7 * 8 * @PointCut ("* *.set*(..)") 9 */ 10 public class ParamParseExample { 11 12 13 14 /*** 15 * Do nothing ctor. 16 * 17 */ 18 public ParamParseExample() { 19 20 } 21 22 /*** 23 * Do nothing method. 24 * 25 */ 26 public void doNothing() { 27 System.out.println("Doing nothing..."); 28 } 29 }

This page was automatically generated by Maven