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

edu.stanford.protege.webprotege.event.BrowserTextChangedEvent Maven / Gradle / Ivy

There is a newer version: 2.0.2-WHO
Show newest version
package edu.stanford.protege.webprotege.event;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.google.common.collect.ImmutableList;
import edu.stanford.protege.webprotege.common.EventId;
import edu.stanford.protege.webprotege.common.ProjectEvent;
import edu.stanford.protege.webprotege.common.ProjectId;
import edu.stanford.protege.webprotege.common.ShortForm;
import org.semanticweb.owlapi.model.OWLEntity;

/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 19/03/2013 */ @JsonTypeName("webprotege.events.entities.BrowserTextChanged") public record BrowserTextChangedEvent(@JsonProperty("eventId") EventId eventId, @JsonProperty("projectId") ProjectId projectId, @JsonProperty("entity") OWLEntity entity, @JsonProperty("newBrowserText") String newBrowserText, @JsonProperty("shortForms") ImmutableList shortForms) implements ProjectEvent { public static final String CHANNEL = "webprotege.events.entities.BrowserTextChanged"; @Override public String getChannel() { return CHANNEL; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy