/branches/1_4_3/src/org/rapla/gui/internal/view/ClassificationInfoUI.java

http://rapla.googlecode.com/ · Java · 120 lines · 90 code · 14 blank · 16 comment · 10 complexity · e59d2127175facbf0f61b5e59400918d MD5 · raw file

  1. /*--------------------------------------------------------------------------*
  2. | Copyright (C) 2006 Christopher Kohlhaas |
  3. | |
  4. | This program is free software; you can redistribute it and/or modify |
  5. | it under the terms of the GNU General Public License as published by the |
  6. | Free Software Foundation. A copy of the license has been included with |
  7. | these distribution in the COPYING file, if not go to www.fsf.org |
  8. | |
  9. | As a special exception, you are granted the permissions to link this |
  10. | program with every library, which license fulfills the Open Source |
  11. | Definition as published by the Open Source Initiative (OSI). |
  12. *--------------------------------------------------------------------------*/
  13. package org.rapla.gui.internal.view;
  14. import java.util.ArrayList;
  15. import java.util.Collection;
  16. import java.util.Date;
  17. import java.util.Locale;
  18. import org.rapla.entities.Timestamp;
  19. import org.rapla.entities.dynamictype.AttributeAnnotations;
  20. import org.rapla.entities.dynamictype.Attribute;
  21. import org.rapla.entities.dynamictype.Classifiable;
  22. import org.rapla.entities.dynamictype.Classification;
  23. import org.rapla.framework.RaplaContext;
  24. import org.rapla.framework.RaplaException;
  25. class ClassificationInfoUI extends HTMLInfo {
  26. public ClassificationInfoUI(RaplaContext sm) throws RaplaException {
  27. super(sm);
  28. }
  29. public void insertClassificationTitle( Classifiable classifiable, StringBuffer buf ) {
  30. Classification classification = classifiable.getClassification();
  31. buf.append( "<strong>");
  32. Locale locale = getRaplaLocale().getLocale();
  33. encode( classification.getType().getName(locale), buf );
  34. buf.append( "</strong>");
  35. }
  36. protected void insertClassification( Classifiable classifiable, StringBuffer buf ) {
  37. insertClassificationTitle( classifiable, buf );
  38. Collection att = new ArrayList();
  39. att.addAll(getClassificationAttributes(classifiable, false));
  40. createTable(att,buf,false);
  41. }
  42. protected Collection getClassificationAttributes(Classifiable classifiable, boolean excludeAdditionalInfos) {
  43. Collection att = new ArrayList();
  44. Classification classification = classifiable.getClassification();
  45. Attribute[] attributes = classification.getAttributes();
  46. for (int i=0; i< attributes.length; i++) {
  47. Attribute attribute = attributes[i];
  48. String view = attribute.getAnnotation( AttributeAnnotations.KEY_EDIT_VIEW, AttributeAnnotations.VALUE_MAIN_VIEW );
  49. if ( view.equals(AttributeAnnotations.VALUE_NO_VIEW )) {
  50. continue;
  51. }
  52. if ( excludeAdditionalInfos && !view.equals( AttributeAnnotations.VALUE_MAIN_VIEW ) ) {
  53. continue;
  54. }
  55. Object value = classification.getValue(attribute);
  56. /*
  57. if (value == null)
  58. continue;
  59. */
  60. String name = getName(attribute);
  61. String valueString = null;
  62. Locale locale = getRaplaLocale().getLocale();
  63. if (value instanceof Boolean) {
  64. valueString = getString(((Boolean) value).booleanValue() ? "yes":"no");
  65. } else {
  66. valueString = classification.getValueAsString(attribute, locale);
  67. }
  68. att.add (new Row(name,encode(valueString)));
  69. }
  70. return att;
  71. }
  72. protected String getTooltip(Object object) {
  73. Classifiable classifiable = (Classifiable) object;
  74. StringBuffer buf = new StringBuffer();
  75. Collection att = new ArrayList();
  76. att.addAll(getClassificationAttributes(classifiable, false));
  77. createTable(att,buf,false);
  78. return buf.toString();
  79. }
  80. protected String createHTMLAndFillLinks(Object object,LinkController controller) {
  81. Classifiable classifiable = (Classifiable) object;
  82. StringBuffer buf = new StringBuffer();
  83. insertClassification( classifiable, buf );
  84. return buf.toString();
  85. }
  86. void insertModificationRow( Timestamp timestamp, StringBuffer buf ) {
  87. final Date createTime = timestamp.getCreateTime();
  88. final Date lastChangeTime = timestamp.getLastChangeTime();
  89. if ( lastChangeTime != null)
  90. {
  91. buf.append("<div style=\"font-size:7px;margin-bottom:4px;\">");
  92. if ( createTime != null)
  93. {
  94. buf.append(getString("created_at"));
  95. buf.append(" ");
  96. buf.append(getRaplaLocale().formatDate(createTime));
  97. buf.append(", ");
  98. }
  99. buf.append(getString("last_changed"));
  100. buf.append(" ");
  101. buf.append(getRaplaLocale().formatDate(lastChangeTime));
  102. buf.append("</div>");
  103. buf.append("\n");
  104. }
  105. }
  106. }