Package com.semagia.atomico.dm.impl

Examples of com.semagia.atomico.dm.impl.Author


     * @param authorName The author's name.
     * @param authorEmail The author's e-mail address.
     * @param authorIRI The author's IRI.
     */
    public DefaultConfiguration(final String authorName, final String authorEmail, final String authorIRI) {
        _author = new Author(authorName, authorEmail, authorIRI);
    }
View Full Code Here


    protected static long now() {
        return System.currentTimeMillis();
    }

    protected static IAuthor createAuthor() {
        return new Author();
    }
View Full Code Here

    protected static IAuthor createAuthor() {
        return new Author();
    }

    protected static IAuthor createAuthor(String name, String email, String iri) {
        return new Author(name, email, iri);
    }
View Full Code Here

TOP

Related Classes of com.semagia.atomico.dm.impl.Author

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.