Modified: james/protocols/imap/trunk/torque/src/main/java/org/apache/james/mailboxmanager/torque/om/BaseMessageHeader.java URL: http://svn.apache.org/viewvc/james/protocols/imap/trunk/torque/src/main/java/org/apache/james/mailboxmanager/torque/om/BaseMessageHeader.java?rev=696828&r1=696827&r2=696828&view=diff ============================================================================== --- james/protocols/imap/trunk/torque/src/main/java/org/apache/james/mailboxmanager/torque/om/BaseMessageHeader.java (original) +++ james/protocols/imap/trunk/torque/src/main/java/org/apache/james/mailboxmanager/torque/om/BaseMessageHeader.java Thu Sep 18 14:44:56 2008 @@ -1,6 +1,5 @@ package org.apache.james.mailboxmanager.torque.om; - import org.apache.commons.lang.ObjectUtils; import org.apache.torque.TorqueException; import org.apache.torque.map.TableMap; @@ -16,769 +15,668 @@ import java.util.Collections; import java.util.List; - - - - /** * This class was autogenerated by Torque on: - * + * * [Sun Dec 09 17:45:09 GMT 2007] - * - * You should not use this class directly. It should not even be - * extended all references should be to MessageHeader + * + * You should not use this class directly. It should not even be extended all + * references should be to MessageHeader */ -public abstract class BaseMessageHeader extends BaseObject -{ +public abstract class BaseMessageHeader extends BaseObject { /** Serial version */ private static final long serialVersionUID = 1197222309712L; /** The Peer class */ - private static final MessageHeaderPeer peer = - new MessageHeaderPeer(); + private static final MessageHeaderPeer peer = new MessageHeaderPeer(); - /** The value for the mailboxId field */ private long mailboxId; - + /** The value for the uid field */ private long uid; - + /** The value for the lineNumber field */ private int lineNumber; - + /** The value for the field field */ private String field; - + /** The value for the value field */ private String value; - - + /** * Get the MailboxId - * + * * @return long */ - public long getMailboxId() - { + public long getMailboxId() { return mailboxId; } - /** * Set the value of MailboxId - * - * @param v new value + * + * @param v + * new value */ - public void setMailboxId(long v) throws TorqueException - { - - if (this.mailboxId != v) - { + public void setMailboxId(long v) throws TorqueException { + + if (this.mailboxId != v) { this.mailboxId = v; setModified(true); } - - - if (aMessageRow != null && !(aMessageRow.getMailboxId() == v)) - { + + if (aMessageRow != null && !(aMessageRow.getMailboxId() == v)) { aMessageRow = null; } - - } - + + } + /** * Get the Uid - * + * * @return long */ - public long getUid() - { + public long getUid() { return uid; } - /** * Set the value of Uid - * - * @param v new value + * + * @param v + * new value */ - public void setUid(long v) throws TorqueException - { - - if (this.uid != v) - { + public void setUid(long v) throws TorqueException { + + if (this.uid != v) { this.uid = v; setModified(true); } - - - if (aMessageRow != null && !(aMessageRow.getUid() == v)) - { + + if (aMessageRow != null && !(aMessageRow.getUid() == v)) { aMessageRow = null; } - - } - + + } + /** * Get the LineNumber - * + * * @return int */ - public int getLineNumber() - { + public int getLineNumber() { return lineNumber; } - /** * Set the value of LineNumber - * - * @param v new value + * + * @param v + * new value */ - public void setLineNumber(int v) - { - - if (this.lineNumber != v) - { + public void setLineNumber(int v) { + + if (this.lineNumber != v) { this.lineNumber = v; setModified(true); } - - - } - + + } + /** * Get the Field - * + * * @return String */ - public String getField() - { + public String getField() { return field; } - /** * Set the value of Field - * - * @param v new value + * + * @param v + * new value */ - public void setField(String v) - { - - if (!ObjectUtils.equals(this.field, v)) - { + public void setField(String v) { + + if (!ObjectUtils.equals(this.field, v)) { this.field = v; setModified(true); } - - - } - + + } + /** * Get the Value - * + * * @return String */ - public String getValue() - { + public String getValue() { return value; } - /** * Set the value of Value - * - * @param v new value + * + * @param v + * new value */ - public void setValue(String v) - { - - if (!ObjectUtils.equals(this.value, v)) - { + public void setValue(String v) { + + if (!ObjectUtils.equals(this.value, v)) { this.value = v; setModified(true); } - - - } - - - - - - private MessageRow aMessageRow; + + } + + private MessageRow aMessageRow; /** * Declares an association between this object and a MessageRow object - * - * @param v MessageRow + * + * @param v + * MessageRow * @throws TorqueException */ - public void setMessageRow(MessageRow v) throws TorqueException - { - if (v == null) - { - setMailboxId( 0); - } - else - { + public void setMessageRow(MessageRow v) throws TorqueException { + if (v == null) { + setMailboxId(0); + } else { setMailboxId(v.getMailboxId()); } - if (v == null) - { - setUid( 0); - } - else - { + if (v == null) { + setUid(0); + } else { setUid(v.getUid()); } - aMessageRow = v; + aMessageRow = v; } - /** - * Returns the associated MessageRow object. - * If it was not retrieved before, the object is retrieved from - * the database - * + * Returns the associated MessageRow object. If it was not retrieved before, + * the object is retrieved from the database + * * @return the associated MessageRow object - * @throws TorqueException - */ - public MessageRow getMessageRow() - throws TorqueException - { - if (aMessageRow == null && (this.mailboxId != 0 && this.uid != 0)) - { - aMessageRow = MessageRowPeer.retrieveByPK(this.mailboxId, this.uid); - } - return aMessageRow; + * @throws TorqueException + */ + public MessageRow getMessageRow() throws TorqueException { + if (aMessageRow == null && (this.mailboxId != 0 && this.uid != 0)) { + aMessageRow = MessageRowPeer.retrieveByPK(this.mailboxId, this.uid); + } + return aMessageRow; } /** - * Return the associated MessageRow object - * If it was not retrieved before, the object is retrieved from - * the database using the passed connection - * - * @param connection the connection used to retrieve the associated object - * from the database, if it was not retrieved before + * Return the associated MessageRow object If it was not retrieved before, + * the object is retrieved from the database using the passed connection + * + * @param connection + * the connection used to retrieve the associated object from the + * database, if it was not retrieved before * @return the associated MessageRow object * @throws TorqueException */ public MessageRow getMessageRow(Connection connection) - throws TorqueException - { - if (aMessageRow == null && (this.mailboxId != 0 && this.uid != 0)) - { - aMessageRow = MessageRowPeer.retrieveByPK(this.mailboxId, this.uid, connection); - } + throws TorqueException { + if (aMessageRow == null && (this.mailboxId != 0 && this.uid != 0)) { + aMessageRow = MessageRowPeer.retrieveByPK(this.mailboxId, this.uid, + connection); + } return aMessageRow; } /** - * Provides convenient way to set a relationship based on a - * ObjectKey, for example - * <code>bar.setFooKey(foo.getPrimaryKey())</code> - * - * Note: It is important that the xml schema used to create this class + * Provides convenient way to set a relationship based on a ObjectKey, for + * example <code>bar.setFooKey(foo.getPrimaryKey())</code> + * + * Note: It is important that the xml schema used to create this class * maintains consistency in the order of related columns between - * message_header and message. - * If for some reason this is impossible, this method should be - * overridden in <code>MessageHeader</code>. - */ - public void setMessageRowKey(ObjectKey key) throws TorqueException - { - SimpleKey[] keys = (SimpleKey[]) key.getValue(); - - setMailboxId(((NumberKey) keys[0]).longValue()); - - setUid(((NumberKey) keys[1]).longValue()); - } - - + * message_header and message. If for some reason this is impossible, this + * method should be overridden in <code>MessageHeader</code>. + */ + public void setMessageRowKey(ObjectKey key) throws TorqueException { + SimpleKey[] keys = (SimpleKey[]) key.getValue(); + + setMailboxId(((NumberKey) keys[0]).longValue()); + + setUid(((NumberKey) keys[1]).longValue()); + } + private static List fieldNames = null; /** * Generate a list of field names. - * + * * @return a list of field names */ - public static synchronized List getFieldNames() - { - if (fieldNames == null) - { + public static synchronized List getFieldNames() { + if (fieldNames == null) { fieldNames = new ArrayList(); - fieldNames.add("MailboxId"); - fieldNames.add("Uid"); - fieldNames.add("LineNumber"); - fieldNames.add("Field"); - fieldNames.add("Value"); - fieldNames = Collections.unmodifiableList(fieldNames); + fieldNames.add("MailboxId"); + fieldNames.add("Uid"); + fieldNames.add("LineNumber"); + fieldNames.add("Field"); + fieldNames.add("Value"); + fieldNames = Collections.unmodifiableList(fieldNames); } return fieldNames; } /** - * Retrieves a field from the object by field (Java) name passed in as a String. - * - * @param name field name + * Retrieves a field from the object by field (Java) name passed in as a + * String. + * + * @param name + * field name * @return value */ - public Object getByName(String name) - { - if (name.equals("MailboxId")) - { - return new Long(getMailboxId()); - } - if (name.equals("Uid")) - { - return new Long(getUid()); - } - if (name.equals("LineNumber")) - { - return new Integer(getLineNumber()); - } - if (name.equals("Field")) - { - return getField(); - } - if (name.equals("Value")) - { - return getValue(); - } - return null; + public Object getByName(String name) { + if (name.equals("MailboxId")) { + return new Long(getMailboxId()); + } + if (name.equals("Uid")) { + return new Long(getUid()); + } + if (name.equals("LineNumber")) { + return new Integer(getLineNumber()); + } + if (name.equals("Field")) { + return getField(); + } + if (name.equals("Value")) { + return getValue(); + } + return null; } /** * Set a field in the object by field (Java) name. - * - * @param name field name - * @param value field value - * @return True if value was set, false if not (invalid name / protected field). - * @throws IllegalArgumentException if object type of value does not match field object type. - * @throws TorqueException If a problem occures with the set[Field] method. - */ - public boolean setByName(String name, Object value ) - throws TorqueException, IllegalArgumentException - { - if (name.equals("MailboxId")) - { - if (value == null || ! (Long.class.isInstance(value))) - { - throw new IllegalArgumentException("setByName: value parameter was null or not a Long object."); + * + * @param name + * field name + * @param value + * field value + * @return True if value was set, false if not (invalid name / protected + * field). + * @throws IllegalArgumentException + * if object type of value does not match field object type. + * @throws TorqueException + * If a problem occures with the set[Field] method. + */ + public boolean setByName(String name, Object value) throws TorqueException, + IllegalArgumentException { + if (name.equals("MailboxId")) { + if (value == null || !(Long.class.isInstance(value))) { + throw new IllegalArgumentException( + "setByName: value parameter was null or not a Long object."); } setMailboxId(((Long) value).longValue()); - return true; + return true; } - if (name.equals("Uid")) - { - if (value == null || ! (Long.class.isInstance(value))) - { - throw new IllegalArgumentException("setByName: value parameter was null or not a Long object."); + if (name.equals("Uid")) { + if (value == null || !(Long.class.isInstance(value))) { + throw new IllegalArgumentException( + "setByName: value parameter was null or not a Long object."); } setUid(((Long) value).longValue()); - return true; + return true; } - if (name.equals("LineNumber")) - { - if (value == null || ! (Integer.class.isInstance(value))) - { - throw new IllegalArgumentException("setByName: value parameter was null or not an Integer object."); + if (name.equals("LineNumber")) { + if (value == null || !(Integer.class.isInstance(value))) { + throw new IllegalArgumentException( + "setByName: value parameter was null or not an Integer object."); } setLineNumber(((Integer) value).intValue()); - return true; + return true; } - if (name.equals("Field")) - { - // Object fields can be null - if (value != null && ! String.class.isInstance(value)) - { - throw new IllegalArgumentException("Invalid type of object specified for value in setByName"); + if (name.equals("Field")) { + // Object fields can be null + if (value != null && !String.class.isInstance(value)) { + throw new IllegalArgumentException( + "Invalid type of object specified for value in setByName"); } setField((String) value); - return true; + return true; } - if (name.equals("Value")) - { - // Object fields can be null - if (value != null && ! String.class.isInstance(value)) - { - throw new IllegalArgumentException("Invalid type of object specified for value in setByName"); + if (name.equals("Value")) { + // Object fields can be null + if (value != null && !String.class.isInstance(value)) { + throw new IllegalArgumentException( + "Invalid type of object specified for value in setByName"); } setValue((String) value); - return true; + return true; } - return false; + return false; } /** - * Retrieves a field from the object by name passed in - * as a String. The String must be one of the static - * Strings defined in this Class' Peer. - * - * @param name peer name + * Retrieves a field from the object by name passed in as a String. The + * String must be one of the static Strings defined in this Class' Peer. + * + * @param name + * peer name * @return value */ - public Object getByPeerName(String name) - { - if (name.equals(MessageHeaderPeer.MAILBOX_ID)) - { - return new Long(getMailboxId()); - } - if (name.equals(MessageHeaderPeer.UID)) - { - return new Long(getUid()); - } - if (name.equals(MessageHeaderPeer.LINE_NUMBER)) - { - return new Integer(getLineNumber()); - } - if (name.equals(MessageHeaderPeer.FIELD)) - { - return getField(); - } - if (name.equals(MessageHeaderPeer.VALUE)) - { - return getValue(); - } - return null; + public Object getByPeerName(String name) { + if (name.equals(MessageHeaderPeer.MAILBOX_ID)) { + return new Long(getMailboxId()); + } + if (name.equals(MessageHeaderPeer.UID)) { + return new Long(getUid()); + } + if (name.equals(MessageHeaderPeer.LINE_NUMBER)) { + return new Integer(getLineNumber()); + } + if (name.equals(MessageHeaderPeer.FIELD)) { + return getField(); + } + if (name.equals(MessageHeaderPeer.VALUE)) { + return getValue(); + } + return null; } /** * Set field values by Peer Field Name - * - * @param name field name - * @param value field value - * @return True if value was set, false if not (invalid name / protected field). - * @throws IllegalArgumentException if object type of value does not match field object type. - * @throws TorqueException If a problem occures with the set[Field] method. + * + * @param name + * field name + * @param value + * field value + * @return True if value was set, false if not (invalid name / protected + * field). + * @throws IllegalArgumentException + * if object type of value does not match field object type. + * @throws TorqueException + * If a problem occures with the set[Field] method. */ public boolean setByPeerName(String name, Object value) - throws TorqueException, IllegalArgumentException - { - if (MessageHeaderPeer.MAILBOX_ID.equals(name)) - { + throws TorqueException, IllegalArgumentException { + if (MessageHeaderPeer.MAILBOX_ID.equals(name)) { return setByName("MailboxId", value); } - if (MessageHeaderPeer.UID.equals(name)) - { + if (MessageHeaderPeer.UID.equals(name)) { return setByName("Uid", value); } - if (MessageHeaderPeer.LINE_NUMBER.equals(name)) - { + if (MessageHeaderPeer.LINE_NUMBER.equals(name)) { return setByName("LineNumber", value); } - if (MessageHeaderPeer.FIELD.equals(name)) - { + if (MessageHeaderPeer.FIELD.equals(name)) { return setByName("Field", value); } - if (MessageHeaderPeer.VALUE.equals(name)) - { + if (MessageHeaderPeer.VALUE.equals(name)) { return setByName("Value", value); } - return false; + return false; } /** - * Retrieves a field from the object by Position as specified - * in the xml schema. Zero-based. - * - * @param pos position in xml schema + * Retrieves a field from the object by Position as specified in the xml + * schema. Zero-based. + * + * @param pos + * position in xml schema * @return value */ - public Object getByPosition(int pos) - { - if (pos == 0) - { - return new Long(getMailboxId()); - } - if (pos == 1) - { - return new Long(getUid()); - } - if (pos == 2) - { - return new Integer(getLineNumber()); - } - if (pos == 3) - { - return getField(); - } - if (pos == 4) - { - return getValue(); - } - return null; + public Object getByPosition(int pos) { + if (pos == 0) { + return new Long(getMailboxId()); + } + if (pos == 1) { + return new Long(getUid()); + } + if (pos == 2) { + return new Integer(getLineNumber()); + } + if (pos == 3) { + return getField(); + } + if (pos == 4) { + return getValue(); + } + return null; } /** * Set field values by its position (zero based) in the XML schema. - * - * @param position The field position - * @param value field value - * @return True if value was set, false if not (invalid position / protected field). - * @throws IllegalArgumentException if object type of value does not match field object type. - * @throws TorqueException If a problem occures with the set[Field] method. + * + * @param position + * The field position + * @param value + * field value + * @return True if value was set, false if not (invalid position / protected + * field). + * @throws IllegalArgumentException + * if object type of value does not match field object type. + * @throws TorqueException + * If a problem occures with the set[Field] method. */ public boolean setByPosition(int position, Object value) - throws TorqueException, IllegalArgumentException - { - if (position == 0) - { + throws TorqueException, IllegalArgumentException { + if (position == 0) { return setByName("MailboxId", value); } - if (position == 1) - { + if (position == 1) { return setByName("Uid", value); } - if (position == 2) - { + if (position == 2) { return setByName("LineNumber", value); } - if (position == 3) - { + if (position == 3) { return setByName("Field", value); } - if (position == 4) - { + if (position == 4) { return setByName("Value", value); } - return false; + return false; } - + /** - * Stores the object in the database. If the object is new, - * it inserts it; otherwise an update is performed. - * + * Stores the object in the database. If the object is new, it inserts it; + * otherwise an update is performed. + * * @throws Exception */ - public void save() throws Exception - { - save(MessageHeaderPeer.DATABASE_NAME); - } + public void save() throws Exception { + save(MessageHeaderPeer.DATABASE_NAME); + } /** - * Stores the object in the database. If the object is new, - * it inserts it; otherwise an update is performed. - * Note: this code is here because the method body is - * auto-generated conditionally and therefore needs to be - * in this file instead of in the super class, BaseObject. - * + * Stores the object in the database. If the object is new, it inserts it; + * otherwise an update is performed. Note: this code is here because the + * method body is auto-generated conditionally and therefore needs to be in + * this file instead of in the super class, BaseObject. + * * @param dbName * @throws TorqueException */ - public void save(String dbName) throws TorqueException - { + public void save(String dbName) throws TorqueException { Connection con = null; - try - { + try { con = Transaction.begin(dbName); save(con); Transaction.commit(con); - } - catch(TorqueException e) - { + } catch (TorqueException e) { Transaction.safeRollback(con); throw e; } - } + } - /** flag to prevent endless save loop, if this object is referenced - by another object which falls in this transaction. */ + /** + * flag to prevent endless save loop, if this object is referenced by + * another object which falls in this transaction. + */ private boolean alreadyInSave = false; - /** - * Stores the object in the database. If the object is new, - * it inserts it; otherwise an update is performed. This method - * is meant to be used as part of a transaction, otherwise use - * the save() method and the connection details will be handled - * internally - * + + /** + * Stores the object in the database. If the object is new, it inserts it; + * otherwise an update is performed. This method is meant to be used as part + * of a transaction, otherwise use the save() method and the connection + * details will be handled internally + * * @param con * @throws TorqueException */ - public void save(Connection con) throws TorqueException - { - if (!alreadyInSave) - { + public void save(Connection con) throws TorqueException { + if (!alreadyInSave) { alreadyInSave = true; - - // If this object has been modified, then save it to the database. - if (isModified()) - { - if (isNew()) - { + if (isModified()) { + if (isNew()) { MessageHeaderPeer.doInsert((MessageHeader) this, con); setNew(false); - } - else - { + } else { MessageHeaderPeer.doUpdate((MessageHeader) this, con); } - } + } - alreadyInSave = false; + alreadyInSave = false; } - } + } - - private final SimpleKey[] pks = new SimpleKey[3]; + private final ComboKey comboPK = new ComboKey(pks); /** * Set the PrimaryKey with an ObjectKey - * + * * @param key */ - public void setPrimaryKey(ObjectKey key) throws TorqueException - { + public void setPrimaryKey(ObjectKey key) throws TorqueException { SimpleKey[] keys = (SimpleKey[]) key.getValue(); - setMailboxId(((NumberKey)keys[0]).longValue()); - setUid(((NumberKey)keys[1]).longValue()); - setLineNumber(((NumberKey)keys[2]).intValue()); - } + setMailboxId(((NumberKey) keys[0]).longValue()); + setUid(((NumberKey) keys[1]).longValue()); + setLineNumber(((NumberKey) keys[2]).intValue()); + } /** * Set the PrimaryKey using SimpleKeys. - * - * @param mailboxId long - * @param uid long - * @param lineNumber int - */ - public void setPrimaryKey( long mailboxId, long uid, int lineNumber) - throws TorqueException - { - setMailboxId(mailboxId); - setUid(uid); - setLineNumber(lineNumber); - } + * + * @param mailboxId + * long + * @param uid + * long + * @param lineNumber + * int + */ + public void setPrimaryKey(long mailboxId, long uid, int lineNumber) + throws TorqueException { + setMailboxId(mailboxId); + setUid(uid); + setLineNumber(lineNumber); + } /** * Set the PrimaryKey using a String. */ - public void setPrimaryKey(String key) throws TorqueException - { + public void setPrimaryKey(String key) throws TorqueException { setPrimaryKey(new ComboKey(key)); } - + /** - * returns an id that differentiates this object from others - * of its class. + * returns an id that differentiates this object from others of its class. */ - public ObjectKey getPrimaryKey() - { - pks[0] = SimpleKey.keyFor(getMailboxId()); - pks[1] = SimpleKey.keyFor(getUid()); - pks[2] = SimpleKey.keyFor(getLineNumber()); - return comboPK; - } - - - /** - * Makes a copy of this object. - * It creates a new object filling in the simple attributes. - * It then fills all the association collections and sets the - * related objects to isNew=true. - */ - public MessageHeader copy() throws TorqueException - { - return copy(true); - } - - /** - * Makes a copy of this object. - * It creates a new object filling in the simple attributes. - * If the parameter deepcopy is true, it then fills all the - * association collections and sets the related objects to - * isNew=true. - * - * @param deepcopy whether to copy the associated objects. + public ObjectKey getPrimaryKey() { + pks[0] = SimpleKey.keyFor(getMailboxId()); + pks[1] = SimpleKey.keyFor(getUid()); + pks[2] = SimpleKey.keyFor(getLineNumber()); + return comboPK; + } + + /** + * Makes a copy of this object. It creates a new object filling in the + * simple attributes. It then fills all the association collections and sets + * the related objects to isNew=true. */ - public MessageHeader copy(boolean deepcopy) throws TorqueException - { + public MessageHeader copy() throws TorqueException { + return copy(true); + } + + /** + * Makes a copy of this object. It creates a new object filling in the + * simple attributes. If the parameter deepcopy is true, it then fills all + * the association collections and sets the related objects to isNew=true. + * + * @param deepcopy + * whether to copy the associated objects. + */ + public MessageHeader copy(boolean deepcopy) throws TorqueException { return copyInto(new MessageHeader(), deepcopy); } - - /** - * Fills the copyObj with the contents of this object. - * The associated objects are also copied and treated as new objects. - * @param copyObj the object to fill. + + /** + * Fills the copyObj with the contents of this object. The associated + * objects are also copied and treated as new objects. + * + * @param copyObj + * the object to fill. */ - protected MessageHeader copyInto(MessageHeader copyObj) throws TorqueException - { + protected MessageHeader copyInto(MessageHeader copyObj) + throws TorqueException { return copyInto(copyObj, true); } - + /** - * Fills the copyObj with the contents of this object. - * If deepcopy is true, The associated objects are also copied - * and treated as new objects. - * @param copyObj the object to fill. - * @param deepcopy whether the associated objects should be copied. - */ - protected MessageHeader copyInto(MessageHeader copyObj, boolean deepcopy) throws TorqueException - { - copyObj.setMailboxId(mailboxId); - copyObj.setUid(uid); - copyObj.setLineNumber(lineNumber); - copyObj.setField(field); - copyObj.setValue(value); - - copyObj.setMailboxId( 0); - copyObj.setUid( 0); - copyObj.setLineNumber( 0); - - if (deepcopy) - { - } - return copyObj; + * Fills the copyObj with the contents of this object. If deepcopy is true, + * The associated objects are also copied and treated as new objects. + * + * @param copyObj + * the object to fill. + * @param deepcopy + * whether the associated objects should be copied. + */ + protected MessageHeader copyInto(MessageHeader copyObj, boolean deepcopy) + throws TorqueException { + copyObj.setMailboxId(mailboxId); + copyObj.setUid(uid); + copyObj.setLineNumber(lineNumber); + copyObj.setField(field); + copyObj.setValue(value); + + copyObj.setMailboxId(0); + copyObj.setUid(0); + copyObj.setLineNumber(0); + + if (deepcopy) { + } + return copyObj; } /** - * returns a peer instance associated with this om. Since Peer classes - * are not to have any instance attributes, this method returns the - * same instance for all member of this class. The method could therefore - * be static, but this would prevent one from overriding the behavior. + * returns a peer instance associated with this om. Since Peer classes are + * not to have any instance attributes, this method returns the same + * instance for all member of this class. The method could therefore be + * static, but this would prevent one from overriding the behavior. */ - public MessageHeaderPeer getPeer() - { + public MessageHeaderPeer getPeer() { return peer; } /** - * Retrieves the TableMap object related to this Table data without - * compiler warnings of using getPeer().getTableMap(). - * + * Retrieves the TableMap object related to this Table data without compiler + * warnings of using getPeer().getTableMap(). + * * @return The associated TableMap object. */ - public TableMap getTableMap() throws TorqueException - { + public TableMap getTableMap() throws TorqueException { return MessageHeaderPeer.getTableMap(); } - - public String toString() - { + public String toString() { StringBuffer str = new StringBuffer(); str.append("MessageHeader:\n"); - str.append("MailboxId = ") - .append(getMailboxId()) - .append("\n"); - str.append("Uid = ") - .append(getUid()) - .append("\n"); - str.append("LineNumber = ") - .append(getLineNumber()) - .append("\n"); - str.append("Field = ") - .append(getField()) - .append("\n"); - str.append("Value = ") - .append(getValue()) - .append("\n"); - return(str.toString()); + str.append("MailboxId = ").append(getMailboxId()).append("\n"); + str.append("Uid = ").append(getUid()).append("\n"); + str.append("LineNumber = ").append(getLineNumber()).append("\n"); + str.append("Field = ").append(getField()).append("\n"); + str.append("Value = ").append(getValue()).append("\n"); + return (str.toString()); } }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
