/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextHeader.java

https://github.com/apache/maven-doxia · Java · 138 lines · 64 code · 17 blank · 57 comment · 10 complexity · 8e77a6fcd801059e5ac276423bdb51cf MD5 · raw file

  1. package org.apache.maven.doxia.module.itext;
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. */
  20. import java.text.ParseException;
  21. import java.text.SimpleDateFormat;
  22. import java.util.Date;
  23. /**
  24. * Header object containing meta-informations.
  25. *
  26. * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
  27. */
  28. public class ITextHeader
  29. {
  30. private String title;
  31. private StringBuilder authors;
  32. private Date date;
  33. /**
  34. * Default constructor
  35. */
  36. public ITextHeader()
  37. {
  38. // nop
  39. }
  40. /**
  41. * Add a title to the Document
  42. *
  43. * @param title1 the title.
  44. */
  45. public final void setTitle( String title1 )
  46. {
  47. this.title = title1;
  48. }
  49. /**
  50. * Get the title
  51. *
  52. * @return title as String
  53. */
  54. public String getTitle()
  55. {
  56. if ( this.title == null )
  57. {
  58. return "";
  59. }
  60. return this.title;
  61. }
  62. /**
  63. * Add a new author
  64. *
  65. * @param author the author.
  66. */
  67. public void addAuthor( String author )
  68. {
  69. if ( this.authors == null )
  70. {
  71. this.authors = new StringBuilder();
  72. }
  73. else
  74. {
  75. this.authors.append( ", " );
  76. }
  77. this.authors.append( author );
  78. }
  79. /**
  80. * Get the authors
  81. *
  82. * @return the authors as String
  83. */
  84. public String getAuthors()
  85. {
  86. if ( ( this.authors == null ) || ( this.authors.length() == 0 ) )
  87. {
  88. return System.getProperty( "user.name" );
  89. }
  90. return this.authors.toString();
  91. }
  92. /**
  93. * Add a date to the document
  94. *
  95. * @param date1 a date as String
  96. */
  97. public void setDate( String date1 )
  98. {
  99. try
  100. {
  101. this.date = new SimpleDateFormat().parse( date1 );
  102. }
  103. catch ( ParseException e )
  104. {
  105. this.date = new Date();
  106. }
  107. }
  108. /**
  109. * Get the date of the document
  110. *
  111. * @return the date as String
  112. */
  113. public String getDate()
  114. {
  115. if ( this.date == null )
  116. {
  117. return new Date( System.currentTimeMillis() ).toString();
  118. }
  119. return this.date.toString();
  120. }
  121. }