1 36 package org.columba.ristretto.imap; 37 38 45 public class Section { 46 private String type; 47 private Object [] params; 48 49 55 public Section(String type, Object [] params) { 56 this.type = type; 57 this.params = params; 58 } 59 62 public Object [] getParams() { 63 return (Object []) params.clone(); 64 } 65 68 public void setParams(Object [] params) { 69 this.params = params; 70 } 71 74 public String getType() { 75 return type; 76 } 77 80 public void setType(String type) { 81 this.type = type; 82 } 83 } 84 | Popular Tags |