View Javadoc
1 package org.hedwig.core; 2 3 /*** 4 * @author Keith Gaddis 5 * 6 *enclosing_type 7 */ 8 public class Part { 9 private String _text; 10 private long _partId; 11 private int _partIndex; //represents its order in the list of MessageParts 12 13 public Part(){ 14 super(); 15 } 16 17 /*** 18 * Returns the text. 19 * @return String 20 */ 21 public String getText() { 22 return _text; 23 } 24 25 /*** 26 * Sets the text. 27 * @param text The text to set 28 */ 29 public void setText(String text) { 30 _text= text; 31 } 32 33 }

This page was automatically generated by Maven