public interface IMailMergeDataSource
When a data source is created, it should be initialized to point to BOF (before the first record).
The Aspose.Words mail merge engine will invoke
Example:
Performs mail merge from a custom data source.public void customDataSource() throws Exception { // Create a destination document for the mail merge Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.insertField(" MERGEFIELD FullName "); builder.insertParagraph(); builder.insertField(" MERGEFIELD Address "); // Create some data that we will use in the mail merge CustomerList customers = new CustomerList(); customers.add(new Customer("Thomas Hardy", "120 Hanover Sq., London")); customers.add(new Customer("Paolo Accorti", "Via Monte Bianco 34, Torino")); // To be able to mail merge from your own data source, it must be wrapped // into an object that implements the IMailMergeDataSource interface CustomerMailMergeDataSource customersDataSource = new CustomerMailMergeDataSource(customers); // Now you can pass your data source into Aspose.Words doc.getMailMerge().execute(customersDataSource); doc.save(getArtifactsDir() + "MailMergeCustom.CustomDataSource.docx"); } /** * An example of a "data entity" class in your application. */ public class Customer { public Customer(final String aFullName, final String anAddress) { mFullName = aFullName; mAddress = anAddress; } public String getFullName() { return mFullName; } public void setFullName(final String value) { mFullName = value; } public String getAddress() { return mAddress; } public void setAddress(final String value) { mAddress = value; } private String mFullName; private String mAddress; } /** * An example of a typed collection that contains your "data" objects. */ public class CustomerList extends ArrayList { public Customer get(final int index) { return (Customer) super.get(index); } public void set(final int index, final Customer value) { super.set(index, value); } } /** * A custom mail merge data source that you implement to allow Aspose.Words * to mail merge data from your Customer objects into Microsoft Word documents. */ public class CustomerMailMergeDataSource implements IMailMergeDataSource { public CustomerMailMergeDataSource(final CustomerList customers) { mCustomers = customers; // When the data source is initialized, it must be positioned before the first record. mRecordIndex = -1; } /** * The name of the data source. Used by Aspose.Words only when executing mail merge with repeatable regions. */ public String getTableName() { return "Customer"; } /** * Aspose.Words calls this method to get a value for every data field. */ public boolean getValue(final String fieldName, final Ref<Object> fieldValue) throws Exception { if (fieldName.equals("FullName")) { fieldValue.set(mCustomers.get(mRecordIndex).getFullName()); return true; } else if (fieldName.equals("Address")) { fieldValue.set(mCustomers.get(mRecordIndex).getAddress()); return true; } else { // A field with this name was not found, // return false to the Aspose.Words mail merge engine fieldValue.set(null); return false; } } /** * A standard implementation for moving to a next record in a collection. */ public boolean moveNext() { if (!isEof()) mRecordIndex++; return (!isEof()); } public IMailMergeDataSource getChildDataSource(final String tableName) { return null; } private boolean isEof() { return (mRecordIndex >= mCustomers.size()); } private final CustomerList mCustomers; private int mRecordIndex; }
Property Getters/Setters Summary | ||
---|---|---|
abstract java.lang.String | getTableName() | |
Returns the name of the data source.
|
Method Summary | ||
---|---|---|
abstract IMailMergeDataSource | getChildDataSource(java.lang.String tableName) | |
The Aspose.Words mail merge engine invokes this method when it encounters a beginning of a nested mail merge region.
|
||
abstract boolean | getValue(java.lang.String fieldName, com.aspose.words.ref.Ref fieldValue) | |
Returns a value for the specified field name or false if the field is not found.
|
||
abstract boolean | moveNext() | |
Advances to the next record in the data source.
|
public abstract java.lang.String getTableName()
If you are implementing
Aspose.Words uses this name to match against the mail merge region name specified in the template document. The comparison between the data source name and the mail merge region name is not case sensitive.
Example:
Performs mail merge from a custom data source.public void customDataSource() throws Exception { // Create a destination document for the mail merge Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.insertField(" MERGEFIELD FullName "); builder.insertParagraph(); builder.insertField(" MERGEFIELD Address "); // Create some data that we will use in the mail merge CustomerList customers = new CustomerList(); customers.add(new Customer("Thomas Hardy", "120 Hanover Sq., London")); customers.add(new Customer("Paolo Accorti", "Via Monte Bianco 34, Torino")); // To be able to mail merge from your own data source, it must be wrapped // into an object that implements the IMailMergeDataSource interface CustomerMailMergeDataSource customersDataSource = new CustomerMailMergeDataSource(customers); // Now you can pass your data source into Aspose.Words doc.getMailMerge().execute(customersDataSource); doc.save(getArtifactsDir() + "MailMergeCustom.CustomDataSource.docx"); } /** * An example of a "data entity" class in your application. */ public class Customer { public Customer(final String aFullName, final String anAddress) { mFullName = aFullName; mAddress = anAddress; } public String getFullName() { return mFullName; } public void setFullName(final String value) { mFullName = value; } public String getAddress() { return mAddress; } public void setAddress(final String value) { mAddress = value; } private String mFullName; private String mAddress; } /** * An example of a typed collection that contains your "data" objects. */ public class CustomerList extends ArrayList { public Customer get(final int index) { return (Customer) super.get(index); } public void set(final int index, final Customer value) { super.set(index, value); } } /** * A custom mail merge data source that you implement to allow Aspose.Words * to mail merge data from your Customer objects into Microsoft Word documents. */ public class CustomerMailMergeDataSource implements IMailMergeDataSource { public CustomerMailMergeDataSource(final CustomerList customers) { mCustomers = customers; // When the data source is initialized, it must be positioned before the first record. mRecordIndex = -1; } /** * The name of the data source. Used by Aspose.Words only when executing mail merge with repeatable regions. */ public String getTableName() { return "Customer"; } /** * Aspose.Words calls this method to get a value for every data field. */ public boolean getValue(final String fieldName, final Ref<Object> fieldValue) throws Exception { if (fieldName.equals("FullName")) { fieldValue.set(mCustomers.get(mRecordIndex).getFullName()); return true; } else if (fieldName.equals("Address")) { fieldValue.set(mCustomers.get(mRecordIndex).getAddress()); return true; } else { // A field with this name was not found, // return false to the Aspose.Words mail merge engine fieldValue.set(null); return false; } } /** * A standard implementation for moving to a next record in a collection. */ public boolean moveNext() { if (!isEof()) mRecordIndex++; return (!isEof()); } public IMailMergeDataSource getChildDataSource(final String tableName) { return null; } private boolean isEof() { return (mRecordIndex >= mCustomers.size()); } private final CustomerList mCustomers; private int mRecordIndex; }
public abstract IMailMergeDataSource getChildDataSource(java.lang.String tableName) throws java.lang.Exception
When the Aspose.Words mail merge engines populates a mail merge region with data and encounters the beginning of a nested
mail merge region in the form of MERGEFIELD TableStart:TableName, it invokes
Below are the rules that the implementation of
If the table that is represented by this data source object has a related child (detail) table with the specified name,
then your implementation needs to return a new
If this data source object does not have a relation to the table with the specified name, then you need to return
a
If a table with the specified name does not exist, your implementation should return null
.
tableName
- The name of the mail merge region as specified in the template document. Case-insensitive.Example:
Performs mail merge from a custom data source.public void customDataSource() throws Exception { // Create a destination document for the mail merge Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.insertField(" MERGEFIELD FullName "); builder.insertParagraph(); builder.insertField(" MERGEFIELD Address "); // Create some data that we will use in the mail merge CustomerList customers = new CustomerList(); customers.add(new Customer("Thomas Hardy", "120 Hanover Sq., London")); customers.add(new Customer("Paolo Accorti", "Via Monte Bianco 34, Torino")); // To be able to mail merge from your own data source, it must be wrapped // into an object that implements the IMailMergeDataSource interface CustomerMailMergeDataSource customersDataSource = new CustomerMailMergeDataSource(customers); // Now you can pass your data source into Aspose.Words doc.getMailMerge().execute(customersDataSource); doc.save(getArtifactsDir() + "MailMergeCustom.CustomDataSource.docx"); } /** * An example of a "data entity" class in your application. */ public class Customer { public Customer(final String aFullName, final String anAddress) { mFullName = aFullName; mAddress = anAddress; } public String getFullName() { return mFullName; } public void setFullName(final String value) { mFullName = value; } public String getAddress() { return mAddress; } public void setAddress(final String value) { mAddress = value; } private String mFullName; private String mAddress; } /** * An example of a typed collection that contains your "data" objects. */ public class CustomerList extends ArrayList { public Customer get(final int index) { return (Customer) super.get(index); } public void set(final int index, final Customer value) { super.set(index, value); } } /** * A custom mail merge data source that you implement to allow Aspose.Words * to mail merge data from your Customer objects into Microsoft Word documents. */ public class CustomerMailMergeDataSource implements IMailMergeDataSource { public CustomerMailMergeDataSource(final CustomerList customers) { mCustomers = customers; // When the data source is initialized, it must be positioned before the first record. mRecordIndex = -1; } /** * The name of the data source. Used by Aspose.Words only when executing mail merge with repeatable regions. */ public String getTableName() { return "Customer"; } /** * Aspose.Words calls this method to get a value for every data field. */ public boolean getValue(final String fieldName, final Ref<Object> fieldValue) throws Exception { if (fieldName.equals("FullName")) { fieldValue.set(mCustomers.get(mRecordIndex).getFullName()); return true; } else if (fieldName.equals("Address")) { fieldValue.set(mCustomers.get(mRecordIndex).getAddress()); return true; } else { // A field with this name was not found, // return false to the Aspose.Words mail merge engine fieldValue.set(null); return false; } } /** * A standard implementation for moving to a next record in a collection. */ public boolean moveNext() { if (!isEof()) mRecordIndex++; return (!isEof()); } public IMailMergeDataSource getChildDataSource(final String tableName) { return null; } private boolean isEof() { return (mRecordIndex >= mCustomers.size()); } private final CustomerList mCustomers; private int mRecordIndex; }
public abstract boolean getValue(java.lang.String fieldName, com.aspose.words.ref.Ref fieldValue) throws java.lang.Exception
The fieldValue parameter emulates .NET out parameter.
Ref<String> fieldValue = {null}; boolean isValueFound = mDataSource.getValue(fieldName, fieldValue); String value = isValueFound ? fieldValue.get() : null;
If you implement this method, then when the requested field is found, you should assign the value fieldValue.set(fondValue) and return true.
fieldName
- The name of the data field.fieldValue
- Returns the field value.Example:
Performs mail merge from a custom data source.public void customDataSource() throws Exception { // Create a destination document for the mail merge Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.insertField(" MERGEFIELD FullName "); builder.insertParagraph(); builder.insertField(" MERGEFIELD Address "); // Create some data that we will use in the mail merge CustomerList customers = new CustomerList(); customers.add(new Customer("Thomas Hardy", "120 Hanover Sq., London")); customers.add(new Customer("Paolo Accorti", "Via Monte Bianco 34, Torino")); // To be able to mail merge from your own data source, it must be wrapped // into an object that implements the IMailMergeDataSource interface CustomerMailMergeDataSource customersDataSource = new CustomerMailMergeDataSource(customers); // Now you can pass your data source into Aspose.Words doc.getMailMerge().execute(customersDataSource); doc.save(getArtifactsDir() + "MailMergeCustom.CustomDataSource.docx"); } /** * An example of a "data entity" class in your application. */ public class Customer { public Customer(final String aFullName, final String anAddress) { mFullName = aFullName; mAddress = anAddress; } public String getFullName() { return mFullName; } public void setFullName(final String value) { mFullName = value; } public String getAddress() { return mAddress; } public void setAddress(final String value) { mAddress = value; } private String mFullName; private String mAddress; } /** * An example of a typed collection that contains your "data" objects. */ public class CustomerList extends ArrayList { public Customer get(final int index) { return (Customer) super.get(index); } public void set(final int index, final Customer value) { super.set(index, value); } } /** * A custom mail merge data source that you implement to allow Aspose.Words * to mail merge data from your Customer objects into Microsoft Word documents. */ public class CustomerMailMergeDataSource implements IMailMergeDataSource { public CustomerMailMergeDataSource(final CustomerList customers) { mCustomers = customers; // When the data source is initialized, it must be positioned before the first record. mRecordIndex = -1; } /** * The name of the data source. Used by Aspose.Words only when executing mail merge with repeatable regions. */ public String getTableName() { return "Customer"; } /** * Aspose.Words calls this method to get a value for every data field. */ public boolean getValue(final String fieldName, final Ref<Object> fieldValue) throws Exception { if (fieldName.equals("FullName")) { fieldValue.set(mCustomers.get(mRecordIndex).getFullName()); return true; } else if (fieldName.equals("Address")) { fieldValue.set(mCustomers.get(mRecordIndex).getAddress()); return true; } else { // A field with this name was not found, // return false to the Aspose.Words mail merge engine fieldValue.set(null); return false; } } /** * A standard implementation for moving to a next record in a collection. */ public boolean moveNext() { if (!isEof()) mRecordIndex++; return (!isEof()); } public IMailMergeDataSource getChildDataSource(final String tableName) { return null; } private boolean isEof() { return (mRecordIndex >= mCustomers.size()); } private final CustomerList mCustomers; private int mRecordIndex; }
public abstract boolean moveNext() throws java.lang.Exception
Example:
Performs mail merge from a custom data source.public void customDataSource() throws Exception { // Create a destination document for the mail merge Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.insertField(" MERGEFIELD FullName "); builder.insertParagraph(); builder.insertField(" MERGEFIELD Address "); // Create some data that we will use in the mail merge CustomerList customers = new CustomerList(); customers.add(new Customer("Thomas Hardy", "120 Hanover Sq., London")); customers.add(new Customer("Paolo Accorti", "Via Monte Bianco 34, Torino")); // To be able to mail merge from your own data source, it must be wrapped // into an object that implements the IMailMergeDataSource interface CustomerMailMergeDataSource customersDataSource = new CustomerMailMergeDataSource(customers); // Now you can pass your data source into Aspose.Words doc.getMailMerge().execute(customersDataSource); doc.save(getArtifactsDir() + "MailMergeCustom.CustomDataSource.docx"); } /** * An example of a "data entity" class in your application. */ public class Customer { public Customer(final String aFullName, final String anAddress) { mFullName = aFullName; mAddress = anAddress; } public String getFullName() { return mFullName; } public void setFullName(final String value) { mFullName = value; } public String getAddress() { return mAddress; } public void setAddress(final String value) { mAddress = value; } private String mFullName; private String mAddress; } /** * An example of a typed collection that contains your "data" objects. */ public class CustomerList extends ArrayList { public Customer get(final int index) { return (Customer) super.get(index); } public void set(final int index, final Customer value) { super.set(index, value); } } /** * A custom mail merge data source that you implement to allow Aspose.Words * to mail merge data from your Customer objects into Microsoft Word documents. */ public class CustomerMailMergeDataSource implements IMailMergeDataSource { public CustomerMailMergeDataSource(final CustomerList customers) { mCustomers = customers; // When the data source is initialized, it must be positioned before the first record. mRecordIndex = -1; } /** * The name of the data source. Used by Aspose.Words only when executing mail merge with repeatable regions. */ public String getTableName() { return "Customer"; } /** * Aspose.Words calls this method to get a value for every data field. */ public boolean getValue(final String fieldName, final Ref<Object> fieldValue) throws Exception { if (fieldName.equals("FullName")) { fieldValue.set(mCustomers.get(mRecordIndex).getFullName()); return true; } else if (fieldName.equals("Address")) { fieldValue.set(mCustomers.get(mRecordIndex).getAddress()); return true; } else { // A field with this name was not found, // return false to the Aspose.Words mail merge engine fieldValue.set(null); return false; } } /** * A standard implementation for moving to a next record in a collection. */ public boolean moveNext() { if (!isEof()) mRecordIndex++; return (!isEof()); } public IMailMergeDataSource getChildDataSource(final String tableName) { return null; } private boolean isEof() { return (mRecordIndex >= mCustomers.size()); } private final CustomerList mCustomers; private int mRecordIndex; }