Package edu.stanford.bmir.protege.web.shared.notes

Examples of edu.stanford.bmir.protege.web.shared.notes.NoteType


    public Note parseNoteFromOntology(NoteId noteId) throws MalformedNoteException {
        NoteId inReplyToId = parseInReplyToIdFromOntology(noteId);
        long createdAt = parseCreatedAtFromOntology(noteId);
        UserId authoredBy = parseAuthoredByFromOntology(noteId);
        NoteType noteType = parseNoteTypeFromOntology(noteId);
        Optional<String> subject = parseSubjectFromOntology(noteId);
        String body = parseBodyFromOntology(noteId);
        return Note.createNote(noteId, Optional.fromNullable(inReplyToId), createdAt, authoredBy, noteType, subject, body);
    }
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.shared.notes.NoteType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.