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

org.jrebirth.af.component.ui.beans.Dock Maven / Gradle / Ivy

There is a newer version: 8.6.0
Show newest version
package org.jrebirth.af.component.ui.beans;

import java.io.Serializable;

import org.jrebirth.af.api.key.UniqueKey;
import org.jrebirth.af.api.ui.Model;

public class Dock implements Serializable {

    /**
     *
     */
    private static final long serialVersionUID = 8111826206258276488L;

    private String name;

    private UniqueKey modelKey;

    public static Dock create() {
        return new Dock();
    }

    public String name() {
        return this.name;
    }

    public Dock name(final String name) {
        this.name = name;
        return this;
    }

    public UniqueKey modelKey() {
        return this.modelKey;
    }

    public Dock modelKey(final UniqueKey modelKey) {
        this.modelKey = modelKey;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy