com.airlenet.repo.domain.Hierarchical Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-repo Show documentation
Show all versions of play-repo Show documentation
The Repository of Play Framework.
The newest version!
package com.airlenet.repo.domain;
import java.util.List;
/**
* 层次
*
* @author ken
*
* @param
*/
public interface Hierarchical extends Sortable {
public T getParent();
public void setParent(T parent);
public List getChildren();
public void setChildren(List children);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy