Java Doc for Entry.java in  » Blogger-System » blojsom-3.1 » org » blojsom » blog » 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 » Blogger System » blojsom 3.1 » org.blojsom.blog 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.blojsom.blog.Entry

All known Subclasses:   org.blojsom.blog.database.DatabaseEntry,
Entry
public interface Entry (Code)
Entry
author:
   David Czarnecki
since:
   blojsom 3.0
version:
   $Id: Entry.java,v 1.7 2007/01/17 02:35:16 czarneckid Exp $




Method Summary
 BooleanallowsComments()
    
 BooleanallowsPingbacks()
    
 BooleanallowsTrackbacks()
    
 IntegergetAllowComments()
     Determines whether or not this blog entry supports comments.
 IntegergetAllowPingbacks()
     Determines whether or not this blog entry supports pingbacks.
 IntegergetAllowTrackbacks()
     Determines whether or not this blog entry supports trackbacks.
public  StringgetAuthor()
    
 CategorygetBlogCategory()
    
public  IntegergetBlogCategoryId()
    
 IntegergetBlogId()
    
 StringgetCategory()
     Category for the blog entry.
 ListgetComments()
    
 Comment[]getCommentsAsArray()
    
 DategetDate()
    
 StringgetDateAsFormat(String format)
     Return the blog entry date formatted with a specified date format
Parameters:
  format - Date format null if the entry date or format is null, otherwise returns the entry date formatted to the specified format.
 StringgetDateAsFormat(String format, Locale locale)
     Return the blog entry date formatted with a specified date format
Parameters:
  format - Date format
Parameters:
  locale - Locale for date formatting null if the entry date or format is null, otherwise returns the entry date formatted to the specified format.
 StringgetDescription()
    
 StringgetEncodedCategory()
     Return the category name encoded.
public  StringgetEncodedPostSlug()
    
 StringgetEscapedDescription()
    
 StringgetEscapedTitle()
    
 StringgetISO8601Date()
    
 IntegergetId()
    
 MapgetMetaData()
     Return meta data for this blog entry.
public  DategetModifiedDate()
    
 intgetNumComments()
    
 intgetNumPingbacks()
    
 intgetNumTrackbacks()
    
 ListgetPingbacks()
    
 Pingback[]getPingbacksAsArray()
    
public  StringgetPostSlug()
    
 StringgetRFC822Date()
    
public  ListgetResponses()
    
public  ListgetResponsesMatchingStatus(String status)
    
public  ListgetResponsesNotMatchingStatus(String status)
    
public  StringgetStatus()
    
 StringgetTitle()
    
 ListgetTrackbacks()
    
 Trackback[]getTrackbacksAsArray()
    
 StringgetUTCDate()
    
 voidsetAllowComments(Integer allowComments)
    
 voidsetAllowPingbacks(Integer allowPingbacks)
    
 voidsetAllowTrackbacks(Integer allowTrackbacks)
    
public  voidsetAuthor(String author)
    
 voidsetBlogCategory(Category blogCategory)
    
public  voidsetBlogCategoryId(Integer blogCategoryId)
    
 voidsetBlogId(Integer blogId)
    
 voidsetComments(List comments)
     Set the comments for this blog entry.
 voidsetDate(Date entryDate)
    
 voidsetDescription(String description)
    
 voidsetId(Integer id)
    
 voidsetMetaData(Map metaData)
    
public  voidsetModifiedDate(Date modifiedDate)
    
 voidsetPingbacks(List pingbacks)
     Set the pingbacks for this blog entry.
public  voidsetPostSlug(String postSlug)
    
public  voidsetStatus(String status)
    
 voidsetTitle(String title)
    
 voidsetTrackbacks(List trackbacks)
     Set the trackbacks for this blog entry.



Method Detail
allowsComments
Boolean allowsComments()(Code)
Whether or not comments are allowed true if comments are allowed, false otherwise



allowsPingbacks
Boolean allowsPingbacks()(Code)
Whether or not pingbacks are allowed true if pingbacks are allowed, false otherwise



allowsTrackbacks
Boolean allowsTrackbacks()(Code)
Whether or not trackbacks are allowed true if trackbacks are allowed, false otherwise



getAllowComments
Integer getAllowComments()(Code)
Determines whether or not this blog entry supports comments. true if the blog entry supports comments, false otherwise



getAllowPingbacks
Integer getAllowPingbacks()(Code)
Determines whether or not this blog entry supports pingbacks. true if the blog entry supports pingbacks, false otherwise



getAllowTrackbacks
Integer getAllowTrackbacks()(Code)
Determines whether or not this blog entry supports trackbacks. true if the blog entry supports trackbacks, false otherwise



getAuthor
public String getAuthor()(Code)
Get the author Author



getBlogCategory
Category getBlogCategory()(Code)
Get the org.blojsom.blog.Category object for this blog entry org.blojsom.blog.Category object



getBlogCategoryId
public Integer getBlogCategoryId()(Code)
Get the blog category ID Blog category ID



getBlogId
Integer getBlogId()(Code)
Get the blog ID Blog ID



getCategory
String getCategory()(Code)
Category for the blog entry. This corresponds to the category directory name. Blog entry category



getComments
List getComments()(Code)
Get the comments List of comments



getCommentsAsArray
Comment[] getCommentsAsArray()(Code)
Get the comments as an array of Comment objects BlogComment[] array



getDate
Date getDate()(Code)
Date of the blog entry

This value is constructed from the lastModified value of the file Date of the blog entry




getDateAsFormat
String getDateAsFormat(String format)(Code)
Return the blog entry date formatted with a specified date format
Parameters:
  format - Date format null if the entry date or format is null, otherwise returns the entry date formatted to the specified format. If the format is invalid, returns entryDate.toString()



getDateAsFormat
String getDateAsFormat(String format, Locale locale)(Code)
Return the blog entry date formatted with a specified date format
Parameters:
  format - Date format
Parameters:
  locale - Locale for date formatting null if the entry date or format is null, otherwise returns the entry date formatted to the specified format. If the format is invalid, returns entryDate.toString()



getDescription
String getDescription()(Code)
Description of the blog entry Blog entry description



getEncodedCategory
String getEncodedCategory()(Code)
Return the category name encoded. Category name encoded as UTF-8



getEncodedPostSlug
public String getEncodedPostSlug()(Code)
Get the post slug encoded as UTF-8 Post slug encoded as UTF-8



getEscapedDescription
String getEscapedDescription()(Code)
Escaped description of the blog entry This method would be used for generating RSS feeds where the <, >, and & characters are escaped Blog entry description where &, <, and > have been escaped



getEscapedTitle
String getEscapedTitle()(Code)
Title for the entry where the <, >, and & characters are escaped Escaped entry title



getISO8601Date
String getISO8601Date()(Code)
Return an ISO 8601 style date http://www.w3.org/TR/NOTE-datetime Date formatted in ISO 8601 format



getId
Integer getId()(Code)
Get the entry ID Entry ID



getMetaData
Map getMetaData()(Code)
Return meta data for this blog entry. This method may return null. Meta data



getModifiedDate
public Date getModifiedDate()(Code)
Get the last modified date Last modified date



getNumComments
int getNumComments()(Code)
Get the number of comments for this entry 0 if comments is null, or the number of comments otherwise, which could be 0



getNumPingbacks
int getNumPingbacks()(Code)
Get the number of pingbacks for this entry 0 if pingbacks is null, or the number of pingbacks otherwise, which could be 0



getNumTrackbacks
int getNumTrackbacks()(Code)
Get the number of trackbacks for this entry 0 if trackbacks is null, or the number of trackbacks otherwise, which could be 0



getPingbacks
List getPingbacks()(Code)
Get the pingbacks for this entry List of org.blojsom.blog.Pingback



getPingbacksAsArray
Pingback[] getPingbacksAsArray()(Code)
Get the pingbacks as an array of org.blojsom.blog.Pingback s objects org.blojsom.blog.Pingback[] array



getPostSlug
public String getPostSlug()(Code)
Get the post slug Post slug



getRFC822Date
String getRFC822Date()(Code)
Return an RFC 822 style date Date formatted in RFC 822 format



getResponses
public List getResponses()(Code)
Get the responses (comments, trackbacks, pingbacks) Responses (comments, trackbacks, pingbacks)



getResponsesMatchingStatus
public List getResponsesMatchingStatus(String status)(Code)
Get the responses (comments, trackbacks, pingbacks) matching some status code
Parameters:
  status - Status code Responses (comments, trackbacks, pingbacks) matching some status code



getResponsesNotMatchingStatus
public List getResponsesNotMatchingStatus(String status)(Code)
Get the responses (comments, trackbacks, pingbacks) not matching some status code
Parameters:
  status - Status code Responses (comments, trackbacks, pingbacks) not matching some status code



getStatus
public String getStatus()(Code)
Get the status Status



getTitle
String getTitle()(Code)
Title of the blog entry Blog title



getTrackbacks
List getTrackbacks()(Code)
Get the trackbacks List of trackbacks



getTrackbacksAsArray
Trackback[] getTrackbacksAsArray()(Code)
Get the trackbacks as an array of Trackback objects Trackback[] array



getUTCDate
String getUTCDate()(Code)
Return an UTC style date Date formatted in UTC format



setAllowComments
void setAllowComments(Integer allowComments)(Code)
Set whether comments are allowed
Parameters:
  allowComments - true if comments are allowed, false otherwise



setAllowPingbacks
void setAllowPingbacks(Integer allowPingbacks)(Code)
Set whether pingbacks are allowed
Parameters:
  allowPingbacks - true if pingbacks are allowed, false otherwise



setAllowTrackbacks
void setAllowTrackbacks(Integer allowTrackbacks)(Code)
Set whether trackbacks are allowed
Parameters:
  allowTrackbacks - true if trackbacks are allowed, false otherwise



setAuthor
public void setAuthor(String author)(Code)
Set the author
Parameters:
  author - Author



setBlogCategory
void setBlogCategory(Category blogCategory)(Code)
Set the org.blojsom.blog.Category object for this blog entry
Parameters:
  blogCategory - New org.blojsom.blog.Category object



setBlogCategoryId
public void setBlogCategoryId(Integer blogCategoryId)(Code)
Set the blog category ID
Parameters:
  blogCategoryId - Blog category ID



setBlogId
void setBlogId(Integer blogId)(Code)
Set the blog ID
Parameters:
  blogId - Blog ID



setComments
void setComments(List comments)(Code)
Set the comments for this blog entry. The comments must be an List of org.blojsom.blog.Comment . This method will not writeback or change the comments on disk.
Parameters:
  comments - Comments for this entry



setDate
void setDate(Date entryDate)(Code)
Date of this blog entry
Parameters:
  entryDate - Date of the blog entry



setDescription
void setDescription(String description)(Code)
Set the description for the blog entry
Parameters:
  description - Description for the blog entry



setId
void setId(Integer id)(Code)
Set the entry ID
Parameters:
  id - Entry ID



setMetaData
void setMetaData(Map metaData)(Code)
Set the meta-data associated with this blog entry
Parameters:
  metaData - Meta-data



setModifiedDate
public void setModifiedDate(Date modifiedDate)(Code)
Set the last modified date
Parameters:
  modifiedDate - Last modified date



setPingbacks
void setPingbacks(List pingbacks)(Code)
Set the pingbacks for this blog entry. The pingbacks must be a List of org.blojsom.blog.Pingback . This method will not writeback or change the pingbacks to disk.
Parameters:
  pingbacks - org.blojsom.blog.Pingbacks for this entry



setPostSlug
public void setPostSlug(String postSlug)(Code)
Set the post slug
Parameters:
  postSlug - Post slug



setStatus
public void setStatus(String status)(Code)
Set the status
Parameters:
  status - Status



setTitle
void setTitle(String title)(Code)
Set the title of the blog entry
Parameters:
  title - Title for the blog entry



setTrackbacks
void setTrackbacks(List trackbacks)(Code)
Set the trackbacks for this blog entry. The trackbacks must be an List of org.blojsom.blog.Trackback . This method will not writeback or change the trackbacks to disk.
Parameters:
  trackbacks - Trackbacks for this entry



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