*&---------------------------------------------------------------------*
*& Include Z17_011_CLASS *
*&---------------------------------------------------------------------*
* Definition part
******************************************
CLASS lcl_airplane DEFINITION.
*------------------------------
* Public section
*------------------------------
PUBLIC SECTION.
TYPES: t_name(25) TYPE c.
METHODS:
constructor,
set_attributes IMPORTING p_name TYPE t_name
p_planetype TYPE saplane-planetype,
display_attributes,
display_n_o_airplanes.
*------------------------------
* Private section
*------------------------------
PRIVATE SECTION.
* Private attributes
DATA: name(25) TYPE c,
planetype TYPE saplane-planetype.
* Private static attribute
CLASS-DATA n_o_airplanes TYPE i.
ENDCLASS.
******************************************
* Implementation part
******************************************
CLASS lcl_airplane IMPLEMENTATION.
METHOD constructor.
* Counts number of instances
n_o_airplanes = n_o_airplanes + 1.
ENDMETHOD.
METHOD set_attributes.
name = p_name.
planetype = p_planetype.
ENDMETHOD.
METHOD display_attributes.
WRITE:/ 'Name:', name, 'Planetype:', planetype.
ENDMETHOD.
METHOD display_n_o_airplanes.
WRITE: / 'No. planes:', n_o_airplanes.
ENDMETHOD.
ENDCLASS.
*& Include Z17_011_CLASS *
*&---------------------------------------------------------------------*
* Definition part
******************************************
CLASS lcl_airplane DEFINITION.
*------------------------------
* Public section
*------------------------------
PUBLIC SECTION.
TYPES: t_name(25) TYPE c.
METHODS:
constructor,
set_attributes IMPORTING p_name TYPE t_name
p_planetype TYPE saplane-planetype,
display_attributes,
display_n_o_airplanes.
*------------------------------
* Private section
*------------------------------
PRIVATE SECTION.
* Private attributes
DATA: name(25) TYPE c,
planetype TYPE saplane-planetype.
* Private static attribute
CLASS-DATA n_o_airplanes TYPE i.
ENDCLASS.
******************************************
* Implementation part
******************************************
CLASS lcl_airplane IMPLEMENTATION.
METHOD constructor.
* Counts number of instances
n_o_airplanes = n_o_airplanes + 1.
ENDMETHOD.
METHOD set_attributes.
name = p_name.
planetype = p_planetype.
ENDMETHOD.
METHOD display_attributes.
WRITE:/ 'Name:', name, 'Planetype:', planetype.
ENDMETHOD.
METHOD display_n_o_airplanes.
WRITE: / 'No. planes:', n_o_airplanes.
ENDMETHOD.
ENDCLASS.
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
71 | Z17_ZSFLIGHT | sapjoy | 2007.02.27 | 2413 |
70 | REPORT Z17_028 | sapjoy | 2007.02.26 | 2940 |
69 | REPORT Z09_013 | sapjoy | 2007.02.24 | 2243 |
68 | REPORT Z17_020. [2] | sapjoy | 2007.02.23 | 2187 |
67 | REPORT z17_025 | sapjoy | 2007.02.23 | 2204 |
66 | REPORT Z17_020 | sapjoy | 2007.02.23 | 2172 |
65 | REPORT Z17_000. | sapjoy | 2007.02.22 | 2419 |
64 | REPORT Z17_022 | sapjoy | 2007.02.22 | 2315 |
63 | REPORT Z17_017 . | sapjoy | 2007.02.15 | 2181 |
62 | REPORT Z17_016 . | sapjoy | 2007.02.14 | 2162 |
61 | REPORT Z17_015 | sapjoy | 2007.02.13 | 2282 |
60 | REPORT Z17_012 | sapjoy | 2007.02.13 | 2305 |
» | INCLUDE Z17_011_CLASS | sapjoy | 2007.02.12 | 2489 |
58 | REPORT Z17_011 | sapjoy | 2007.02.12 | 2287 |
57 | REPORT Z017_007 [3] | sapjoy | 2007.02.12 | 2353 |
56 | REPORT Z17_006 | sapjoy | 2007.02.12 | 2209 |
55 | REPORT Z17_005 | sapjoy | 2007.02.12 | 2174 |
54 | REPORT Z17_003 | sapjoy | 2007.02.09 | 2347 |
53 | REPORT Z17_002 | sapjoy | 2007.02.08 | 2138 |
52 | REPORT Z17_001. | sapjoy | 2007.02.07 | 2147 |