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

poussecafe.doc.model.relation.Component Maven / Gradle / Ivy

There is a newer version: 0.29.0
Show newest version
package poussecafe.doc.model.relation;

import poussecafe.domain.ValueObject;

public class Component implements ValueObject {

    public Component(ComponentType type, String className) {
        this.type = type;
        this.className = className;
    }

    private ComponentType type;

    public ComponentType type() {
        return type;
    }

    private String className;

    public String className() {
        return className;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy