package org.odata4j.core; /** * An object with a title. * * <p>No behavior or semantics are implied, this is simply a convenient reusable interface.</p> */ public interface Titled { /** * Gets the title. * * @return the title */ String getTitle(); }