Examples of editBibliographicReference()


Examples of org.fenixedu.academic.domain.CompetenceCourse.editBibliographicReference()

    protected void run(String competenceCourseID, Integer bibliographicReferenceID, String year, String title, String authors,
            String reference, BibliographicReferenceType bibliographicReferenceType, String url) throws FenixServiceException {

        final CompetenceCourse competenceCourse = readCompetenceCourse(competenceCourseID);
        competenceCourse.editBibliographicReference(bibliographicReferenceID, year, title, authors, reference, buildUrl(url),
                bibliographicReferenceType);
    }

    protected void run(String competenceCourseID, Integer bibliographicReferenceID) throws FenixServiceException {
        final CompetenceCourse competenceCourse = readCompetenceCourse(competenceCourseID);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.