1 29 30 package com.caucho.xtpdoc; 31 32 import java.util.ArrayList ; 33 34 public class ATOCControlItem { 35 private int _depth; 36 private String _description; 37 private ArrayList <String > _prunes = new ArrayList <String >(); 38 39 public void setDepth(int depth) 40 { 41 _depth = depth; 42 } 43 44 public void setDescription(String description) 45 { 46 _description = description; 47 } 48 49 public void addPrune(String prune) 50 { 51 _prunes.add(prune); 52 } 53 } 54 | Popular Tags |