
edu.stanford.protege.webprotege.frame.GetAnnotationPropertyFrameAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webprotege-entity-frames Show documentation
Show all versions of webprotege-entity-frames Show documentation
Data structures for dealing with entity frames
The newest version!
package edu.stanford.protege.webprotege.frame;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import edu.stanford.protege.webprotege.common.ProjectId;
import edu.stanford.protege.webprotege.common.ProjectRequest;
import edu.stanford.protege.webprotege.common.Request;
import org.semanticweb.owlapi.model.OWLAnnotationProperty;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 23/04/2013
*/
@JsonTypeName("webprotege.frames.GetAnnotationPropertyFrame")
public record GetAnnotationPropertyFrameAction(@JsonProperty("subject") OWLAnnotationProperty subject,
@JsonProperty("projectId") ProjectId projectId) implements ProjectRequest {
public static final String CHANNEL = "webprotege.frames.GetAnnotationPropertyFrame";
@Override
public String getChannel() {
return CHANNEL;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy