All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.mvc.main.model.MacroRef Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
package org.bidib.wizard.mvc.main.model;

import java.io.Serializable;

public class MacroRef implements Serializable {
    private static final long serialVersionUID = 1L;

    private Integer id;

    /**
     * Creates a new instance of MacroRef. The MacroRef stores the id of a macro.
     */
    public MacroRef() {
        this.id = 0;
    }

    public MacroRef(Integer id) {
        this.id = id;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String toString() {
        return "MacroRef, id: " + id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy