tck/src/main/java/org/apache/jdo/tck/pc/inheritance/TopPersistH.java [29:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public TopPersistH(
      int intA,
      double doubleB,
      int intB,
      char charC,
      boolean booleanD,
      float floatE,
      short shortF,
      short shortG,
      int intVal) {
    super(intA, doubleB, intB, charC, booleanD, floatE, shortF, shortG);
    intH = intVal;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tck/src/main/java/org/apache/jdo/tck/pc/inheritance/TopNonPersistH.java [29:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public TopNonPersistH(
      int intA,
      double doubleB,
      int intB,
      char charC,
      boolean booleanD,
      float floatE,
      short shortF,
      short shortG,
      int intVal) {
    super(intA, doubleB, intB, charC, booleanD, floatE, shortF, shortG);
    intH = intVal;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



