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



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



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



