2
0

jrec.inc 872 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2011 by Jonas Maebe,
  4. members of the Free Pascal development team.
  5. This file implements support infrastructure for records under the JVM
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. constructor FpcBaseRecordType.create;
  13. begin
  14. end;
  15. function FpcBaseRecordType.clone: JLObject;
  16. begin
  17. result:=inherited;
  18. end;
  19. function FpcBaseRecordType.newEmpty: FpcBaseRecordType;
  20. begin
  21. result:=FpcBaseRecordType(inherited clone);
  22. end;