1 9 package org.jboss.portal.portlet.metadata; 10 11 import java.util.LinkedList ; 12 import java.util.List ; 13 14 import org.jboss.portal.common.plugin.PluginMetaData; 15 16 22 public class LanguagesMetaData 23 implements PluginMetaData 24 { 25 26 29 private List supportedLocales; 30 31 34 private String resourceBundle; 35 36 39 private InfoMetaData info; 40 41 public LanguagesMetaData() 42 { 43 this.supportedLocales = new LinkedList (); 44 } 45 46 public List getSupportedLocales() 47 { 48 return supportedLocales; 49 } 50 51 public String getResourceBundle() 52 { 53 return resourceBundle; 54 } 55 56 public void setResourceBundle(String resourceBundle) 57 { 58 this.resourceBundle = resourceBundle; 59 } 60 61 public InfoMetaData getInfo() 62 { 63 return info; 64 } 65 66 public void setInfo(InfoMetaData info) 67 { 68 this.info = info; 69 } 70 71 public static class InfoMetaData 72 { 73 74 75 private String title; 76 77 78 private String shortTitle; 79 80 81 private String keywords; 82 83 public String getTitle() 84 { 85 return title; 86 } 87 88 public void setTitle(String title) 89 { 90 this.title = title; 91 } 92 93 public String getShortTitle() 94 { 95 return shortTitle; 96 } 97 98 public void setShortTitle(String shortTitle) 99 { 100 this.shortTitle = shortTitle; 101 } 102 103 public String getKeywords() 104 { 105 return keywords; 106 } 107 108 public void setKeywords(String keywords) 109 { 110 this.keywords = keywords; 111 } 112 } 113 } 114 | Popular Tags |