1 7 package org.exoplatform.services.portletcontainer.pci; 8 9 import java.util.List ; 10 11 15 public class CustomModeWithDescription { 16 17 private javax.portlet.PortletMode portletMode; 18 private List descriptions; 19 20 public CustomModeWithDescription(javax.portlet.PortletMode portletMode, 21 List descriptions){ 22 this.portletMode = portletMode; 23 this.descriptions = descriptions; 24 } 25 26 29 public List getDescriptions() { 30 return descriptions; 31 } 32 33 public javax.portlet.PortletMode getPortletMode() { 34 return portletMode; 35 } 36 37 38 39 } 40 | Popular Tags |