5.11.2.1.1.1.1.1.1.2.1.1. ExampleBaseClass.java

Listing 5.118 java/io/metafactory/codecomposer_reference/entities/base/ExampleBaseClass.java
 1package io.metafactory.codecomposer_reference.entities.base;
 2
 3
 4/**
 5 * ExampleBaseClass -  Created by MetaFactory: Automation of Software Development
 6 */
 7public class ExampleBaseClass {
 8    private String identifier;
 9
10
11    /**
12     * Getter for property identifier.
13     *
14     * @return value of property identifier
15     */
16    public String getIdentifier() {
17        return this.identifier;
18    }
19
20    /**
21     * Setter for property identifier.
22     *
23     * @param identifier new value of property identifier
24     */
25    public void setIdentifier(final String identifier) {
26        this.identifier = identifier;
27    }
28
29
30}