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

edu.stanford.protege.webprotege.persistence.ProjectIdReadConverter Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.persistence;

import edu.stanford.protege.webprotege.common.ProjectId;

/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 8/20/13 *

* An implementation of {@link Converter} that reads a {@link ProjectId} from a {@link String}. *

*/ public class ProjectIdReadConverter implements Converter { public ProjectId convert(String id) { return ProjectId.valueOf(id); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy