*&---------------------------------------------------------------------*
*& 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 | 2445 |
| 70 | REPORT Z17_028 | sapjoy | 2007.02.26 | 2967 |
| 69 | REPORT Z09_013 | sapjoy | 2007.02.24 | 2273 |
| 68 | REPORT Z17_020. [2] | sapjoy | 2007.02.23 | 2232 |
| 67 | REPORT z17_025 | sapjoy | 2007.02.23 | 2226 |
| 66 | REPORT Z17_020 | sapjoy | 2007.02.23 | 2203 |
| 65 | REPORT Z17_000. | sapjoy | 2007.02.22 | 2453 |
| 64 | REPORT Z17_022 | sapjoy | 2007.02.22 | 2342 |
| 63 | REPORT Z17_017 . | sapjoy | 2007.02.15 | 2208 |
| 62 | REPORT Z17_016 . | sapjoy | 2007.02.14 | 2188 |
| 61 | REPORT Z17_015 | sapjoy | 2007.02.13 | 2313 |
| 60 | REPORT Z17_012 | sapjoy | 2007.02.13 | 2329 |
| » | INCLUDE Z17_011_CLASS | sapjoy | 2007.02.12 | 2526 |
| 58 | REPORT Z17_011 | sapjoy | 2007.02.12 | 2312 |
| 57 | REPORT Z017_007 [3] | sapjoy | 2007.02.12 | 2396 |
| 56 | REPORT Z17_006 | sapjoy | 2007.02.12 | 2239 |
| 55 | REPORT Z17_005 | sapjoy | 2007.02.12 | 2201 |
| 54 | REPORT Z17_003 | sapjoy | 2007.02.09 | 2373 |
| 53 | REPORT Z17_002 | sapjoy | 2007.02.08 | 2163 |
| 52 | REPORT Z17_001. | sapjoy | 2007.02.07 | 2171 |