edu.stanford.smi.protege.server.metaproject.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protege Show documentation
Show all versions of protege Show documentation
Core code for the Protege ontology editor. Serves as the basis for the Protege-Frames and Protege-OWL editors.
package edu.stanford.smi.protege.server.metaproject;
import java.util.Collection;
import java.util.Set;
public interface Group extends PolicyControlledObject {
String getName();
Set getMembers();
String getDescription();
void setDescription(String description);
void setName(String name);
void addMember(User member);
void setMembers(Collection members);
MetaProject getMetaProject();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy