Java Doc for AssignmentSubmission.java in  » ERP-CRM-Financial » sakai » org » sakaiproject » assignment » api » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » sakai » org.sakaiproject.assignment.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.sakaiproject.assignment.api.AssignmentSubmission

AssignmentSubmission
public interface AssignmentSubmission extends Entity(Code)

AssignmentSubmission is the an interface for the Sakai assignments module. It represents student submissions for assignments.





Method Summary
public  AssignmentgetAssignment()
    
public  StringgetAssignmentId()
    
public  StringgetContext()
     Access the context at the time of creation.
public  ListgetFeedbackAttachments()
     Access the list of attachments returned to the students in the process of grading this assignment; usually a modified or annotated version of the attachment submitted.
public  StringgetFeedbackComment()
    
public  StringgetFeedbackText()
    
public  StringgetGrade()
     Access the grade recieved.
public  StringgetGradeDisplay()
     Access the grade recieved.
public  booleangetGradeReleased()
     Get whether the grade has been released.
public  booleangetGraded()
     Get whether this Submission has been graded.
public  booleangetHonorPledgeFlag()
     Access the checked status of the honor pledge flag.
public  booleangetReturned()
     Get whether this Submission was rejected by the grader.
public  StringgetStatus()
     Returns the status of the submission : Not Started, submitted, returned or graded.
public  booleangetSubmitted()
     Get whether this is a final submission.
public  ListgetSubmittedAttachments()
     Access the list of attachments to this response to the Assignment.
public  StringgetSubmittedText()
     Text submitted in response to the Assignment.
public  ListgetSubmitterIds()
     Access the list of Users who submitted this response to the Assignment.
public  User[]getSubmitters()
     Access the list of Users who submitted this response to the Assignment.
public  TimegetTimeLastModified()
    
public  TimegetTimeReturned()
     Get the time at which the graded submission was returned; null means the response is not yet graded.
public  TimegetTimeSubmitted()
     Set the time at which this response was submitted; null signifies the response is unsubmitted.



Method Detail
getAssignment
public Assignment getAssignment()(Code)
Access the Assignment for this Submission the Assignment



getAssignmentId
public String getAssignmentId()(Code)
Access the ID for the Assignment for this Submission String - the Assignment id



getContext
public String getContext()(Code)
Access the context at the time of creation. String - the context string.



getFeedbackAttachments
public List getFeedbackAttachments()(Code)
Access the list of attachments returned to the students in the process of grading this assignment; usually a modified or annotated version of the attachment submitted. List of the Resource objects pointing to the attachments.



getFeedbackComment
public String getFeedbackComment()(Code)
Get the general comments by the grader The text of the grader's comments; may be null.



getFeedbackText
public String getFeedbackText()(Code)
Access the text part of the instructors feedback; usually an annotated copy of the submittedText The text of the grader's feedback.



getGrade
public String getGrade()(Code)
Access the grade recieved. The Submission's grade..



getGradeDisplay
public String getGradeDisplay()(Code)
Access the grade recieved. When points-type, format it to one decimal place The Submission's grade..



getGradeReleased
public boolean getGradeReleased()(Code)
Get whether the grade has been released. True if the Submissions's grade has been released, false otherwise.



getGraded
public boolean getGraded()(Code)
Get whether this Submission has been graded. True if the submission has been graded, false otherwise.



getHonorPledgeFlag
public boolean getHonorPledgeFlag()(Code)
Access the checked status of the honor pledge flag. True if the honor pledge is checked, false otherwise.



getReturned
public boolean getReturned()(Code)
Get whether this Submission was rejected by the grader. True if this response was rejected by the grader, false otherwise.



getStatus
public String getStatus()(Code)
Returns the status of the submission : Not Started, submitted, returned or graded. The Submission's status.



getSubmitted
public boolean getSubmitted()(Code)
Get whether this is a final submission. True if a final submission, false if still a draft.



getSubmittedAttachments
public List getSubmittedAttachments()(Code)
Access the list of attachments to this response to the Assignment. List of the list of attachments as Reference objects;



getSubmittedText
public String getSubmittedText()(Code)
Text submitted in response to the Assignment. The text of the submission.



getSubmitterIds
public List getSubmitterIds()(Code)
Access the list of Users who submitted this response to the Assignment. List of user ids



getSubmitters
public User[] getSubmitters()(Code)
Access the list of Users who submitted this response to the Assignment. Array of user objects.



getTimeLastModified
public Time getTimeLastModified()(Code)
Get the time of last modification; The time of last modification.



getTimeReturned
public Time getTimeReturned()(Code)
Get the time at which the graded submission was returned; null means the response is not yet graded. the time (may be null)



getTimeSubmitted
public Time getTimeSubmitted()(Code)
Set the time at which this response was submitted; null signifies the response is unsubmitted. Time of submission.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.