1 23 package org.infoglue.deliver.portal.om; 24 25 import java.util.Locale ; 26 27 import org.apache.pluto.om.common.Description; 28 29 33 public class DescriptionImpl implements Description { 34 35 private String text; 36 private String lang; 37 38 41 public String getDescription() { 42 return text; 43 } 44 45 48 public Locale getLocale() { 49 return new Locale (lang); 50 } 51 52 } 53 | Popular Tags |