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

net.sixpointsix.carpo.common.model.PropertyHoldingEntity Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package net.sixpointsix.carpo.common.model;

/**
 * An entity can have properties with this interface.
 *
 * @author Andrew Tarry
 * @since 0.0.1
 */
public interface PropertyHoldingEntity {

    /**
     * Get the set of properties for the entity
     *
     * 

* This method should never return null. If there are no properties an empty collection should be returned *

* * @return PropertyCollection */ PropertyCollection getProperties(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy