package w3c.wai.parser.html4.struct.table;

protected class Pair {
  private int cpt;
  private int p;
  
  
  protected Pair(int cpt,int p) {
    this.cpt=cpt;
    this.p=p;
  }
  
  protected int getCpt() {
    return cpt;
  }
    
  protected int getP() {
    
    return p;
  }
}

