code cleanup
authorNiki Roo <niki@nikiroo.be>
Wed, 13 May 2020 12:46:18 +0000 (14:46 +0200)
committerNiki Roo <niki@nikiroo.be>
Wed, 13 May 2020 12:46:18 +0000 (14:46 +0200)
src/be/nikiroo/fanfix_swing/Actions.java
src/be/nikiroo/fanfix_swing/gui/PropertiesPanel.java

index 6350c8a781dffc8714d3f037ebebd4405366ff4f..1db0c23897446cc842ff125f17e6bf38b9d71509 100644 (file)
@@ -278,49 +278,4 @@ public class Actions {
 
                return source;
        }
-
-       /**
-        * Describe a {@link Story} from its {@link MetaData} and return a list of
-        * title/value that represent this {@link Story}.
-        * 
-        * @param meta
-        *            the {@link MetaData} to represent
-        * 
-        * @return the information
-        */
-       static public Map<String, String> getMetaDesc(MetaData meta) {
-               Map<String, String> metaDesc = new LinkedHashMap<String, String>();
-
-               // TODO: i18n
-
-               StringBuilder tags = new StringBuilder();
-               for (String tag : meta.getTags()) {
-                       if (tags.length() > 0) {
-                               tags.append(", ");
-                       }
-                       tags.append(tag);
-               }
-
-               // TODO: i18n
-               metaDesc.put("Author", meta.getAuthor());
-               metaDesc.put("Published on", meta.getPublisher());
-               metaDesc.put("Publication date", meta.getDate());
-               metaDesc.put("Creation date", meta.getCreationDate());
-               String count = "";
-               if (meta.getWords() > 0) {
-                       count = StringUtils.formatNumber(meta.getWords());
-               }
-               if (meta.isImageDocument()) {
-                       metaDesc.put("Number of images", count);
-               } else {
-                       metaDesc.put("Number of words", count);
-               }
-               metaDesc.put("Source", meta.getSource());
-               metaDesc.put("Subject", meta.getSubject());
-               metaDesc.put("Language", meta.getLang());
-               metaDesc.put("Tags", tags.toString());
-               metaDesc.put("URL", meta.getUrl());
-
-               return metaDesc;
-       }
 }
index 82c1e873a857c0ba23e55b9e2c692d60d914cdd2..b50635793a9f17ebc6d6d1fe282837ff11d3f8c7 100644 (file)
@@ -99,7 +99,7 @@ public class PropertiesPanel extends JPanel {
                mainPanel.add(UIUtils.scroll(mainPanelValues, true, false),
                                BorderLayout.CENTER);
 
-               Map<String, String> desc = Actions.getMetaDesc(meta);
+               Map<String, String> desc = BasicLibrary.getMetaDesc(meta);
                for (String key : desc.keySet()) {
                        JTextArea jKey = new JTextArea(key);
                        jKey.setFont(new Font(jKey.getFont().getFontName(), Font.BOLD,