View Javadoc

1   package org.kuali.maven.mojo.s3;
2   
3   public class Depth {
4       int depth;
5   
6       public void increment() {
7           depth++;
8       }
9   
10      public void decrement() {
11          depth--;
12      }
13  
14      public int getValue() {
15          return depth;
16      }
17  
18  }