aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/AbstractMultipart.java
blob: 7b6d2e7788cef3fc070be6014445a82b9c237c08 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.libmailcore;

import java.util.List;

/** Abstract MIME multipart. */
public class AbstractMultipart extends AbstractPart {
    /** Returns the parts of the MIME multipart. */
    public native List<AbstractPart> parts();
    /** Sets the parts of the MIME multipart. */
    public native void setParts(List<AbstractPart> parts);
}