google-code-export / saplink

Automatically exported from code.google.com/p/saplink
1 stars 2 forks source link

Class plugin: CREATEIXMLDOCFROMOBJECT method missing the type source on export #47

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Issue reported by Pavel Anisimov:

As experiments shown, if we add a custom type declarations (complex type
case) to private or protected section those declarations become broken
after import. Because for some reason, when class is created custom type
and data declarations are stripped from appropriate sections.

  For example, if we declare some type and data like this:
  types:
    begin of ts_test,
      a(1) type c,
      b type i,
    end of ts_test .

  data:
    begin of ts_test2,
      a(1) type c,
      b type i,
    end of ts_test2 .

Then after export-import steps we will end with something like this:
types:
 .
data:
.

Original issue reported on code.google.com by ewherrm...@gmail.com on 31 Jan 2007 at 5:53

GoogleCodeExporter commented 9 years ago
All public, protected, and private sections are now inserted as complete and any
complex types or other code is retained

Original comment by ewherrm...@gmail.com on 1 Feb 2007 at 3:43

GoogleCodeExporter commented 9 years ago

Original comment by ewherrm...@gmail.com on 5 Feb 2007 at 3:21