Package org.openblend.fejstbuk.domain

Examples of org.openblend.fejstbuk.domain.Question


            throw new IllegalArgumentException(e);
        }
    }

    public Question addQuestion(User owner, String question) {
        Question q = new Question();
        q.setQuestion(question);
        q.setUser(owner);
        q.setTimestamp(new Date());
        em.persist(q);
        addLinked(owner, q);
        return q;
    }
View Full Code Here

TOP

Related Classes of org.openblend.fejstbuk.domain.Question

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.