FieldUpdatingProgressArgs
Inheritance: java.lang.Object
public class FieldUpdatingProgressArgs
Provides data for the field updating progress event.
Examples:
Shows how to use callback methods during a field update.
public void fieldUpdatingCallbackTest() throws Exception
{
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertField(" DATE \\@ \"dddd, d MMMM yyyy\" ");
builder.insertField(" TIME ");
builder.insertField(" REVNUM ");
builder.insertField(" AUTHOR \"John Doe\" ");
builder.insertField(" SUBJECT \"My Subject\" ");
builder.insertField(" QUOTE \"Hello world!\" ");
FieldUpdatingCallback callback = new FieldUpdatingCallback();
doc.getFieldOptions().setFieldUpdatingCallback(callback);
doc.updateFields();
Assert.assertTrue(callback.getFieldUpdatedCalls().contains("Updating John Doe"));
}
///
/// Implement this interface if you want to have your own custom methods called during a field update.
///
public static class FieldUpdatingCallback implements IFieldUpdatingCallback
{
public FieldUpdatingCallback()
{
mFieldUpdatedCalls = new ArrayList();
}
///
/// A user defined method that is called just before a field is updated.
///
public void fieldUpdating(Field field) {
if (field.getType() == FieldType.FIELD_AUTHOR)
{
FieldAuthor fieldAuthor = (FieldAuthor) field;
try {
fieldAuthor.setAuthorName("Updating John Doe");
} catch (Exception e) {
e.printStackTrace();
}
}
}
///
/// A user defined method that is called just after a field is updated.
///
public void fieldUpdated(Field field)
{
getFieldUpdatedCalls().add(field.getResult());
}
public ArrayList getFieldUpdatedCalls() { return mFieldUpdatedCalls; };
private ArrayList mFieldUpdatedCalls;
}
Methods
Method | Description |
---|---|
getTotalFieldsCount() | Gets the total fields count to be updated. |
getUpdateCompleted() | Gets a value indicating whether field updating is completed. |
getUpdatedFieldsCount() | Gets the number of updated fields. |
getTotalFieldsCount()
public int getTotalFieldsCount()
Gets the total fields count to be updated.
Remarks:
The value is not constant and may be increased during updating process.
Examples:
Shows how to use callback methods during a field update.
public void fieldUpdatingCallbackTest() throws Exception
{
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertField(" DATE \\@ \"dddd, d MMMM yyyy\" ");
builder.insertField(" TIME ");
builder.insertField(" REVNUM ");
builder.insertField(" AUTHOR \"John Doe\" ");
builder.insertField(" SUBJECT \"My Subject\" ");
builder.insertField(" QUOTE \"Hello world!\" ");
FieldUpdatingCallback callback = new FieldUpdatingCallback();
doc.getFieldOptions().setFieldUpdatingCallback(callback);
doc.updateFields();
Assert.assertTrue(callback.getFieldUpdatedCalls().contains("Updating John Doe"));
}
///
/// Implement this interface if you want to have your own custom methods called during a field update.
///
public static class FieldUpdatingCallback implements IFieldUpdatingCallback
{
public FieldUpdatingCallback()
{
mFieldUpdatedCalls = new ArrayList();
}
///
/// A user defined method that is called just before a field is updated.
///
public void fieldUpdating(Field field) {
if (field.getType() == FieldType.FIELD_AUTHOR)
{
FieldAuthor fieldAuthor = (FieldAuthor) field;
try {
fieldAuthor.setAuthorName("Updating John Doe");
} catch (Exception e) {
e.printStackTrace();
}
}
}
///
/// A user defined method that is called just after a field is updated.
///
public void fieldUpdated(Field field)
{
getFieldUpdatedCalls().add(field.getResult());
}
public ArrayList getFieldUpdatedCalls() { return mFieldUpdatedCalls; };
private ArrayList mFieldUpdatedCalls;
}
Returns: int - The total fields count to be updated.
getUpdateCompleted()
public boolean getUpdateCompleted()
Gets a value indicating whether field updating is completed.
Examples:
Shows how to use callback methods during a field update.
public void fieldUpdatingCallbackTest() throws Exception
{
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertField(" DATE \\@ \"dddd, d MMMM yyyy\" ");
builder.insertField(" TIME ");
builder.insertField(" REVNUM ");
builder.insertField(" AUTHOR \"John Doe\" ");
builder.insertField(" SUBJECT \"My Subject\" ");
builder.insertField(" QUOTE \"Hello world!\" ");
FieldUpdatingCallback callback = new FieldUpdatingCallback();
doc.getFieldOptions().setFieldUpdatingCallback(callback);
doc.updateFields();
Assert.assertTrue(callback.getFieldUpdatedCalls().contains("Updating John Doe"));
}
///
/// Implement this interface if you want to have your own custom methods called during a field update.
///
public static class FieldUpdatingCallback implements IFieldUpdatingCallback
{
public FieldUpdatingCallback()
{
mFieldUpdatedCalls = new ArrayList();
}
///
/// A user defined method that is called just before a field is updated.
///
public void fieldUpdating(Field field) {
if (field.getType() == FieldType.FIELD_AUTHOR)
{
FieldAuthor fieldAuthor = (FieldAuthor) field;
try {
fieldAuthor.setAuthorName("Updating John Doe");
} catch (Exception e) {
e.printStackTrace();
}
}
}
///
/// A user defined method that is called just after a field is updated.
///
public void fieldUpdated(Field field)
{
getFieldUpdatedCalls().add(field.getResult());
}
public ArrayList getFieldUpdatedCalls() { return mFieldUpdatedCalls; };
private ArrayList mFieldUpdatedCalls;
}
Returns: boolean - A value indicating whether field updating is completed.
getUpdatedFieldsCount()
public int getUpdatedFieldsCount()
Gets the number of updated fields.
Examples:
Shows how to use callback methods during a field update.
public void fieldUpdatingCallbackTest() throws Exception
{
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertField(" DATE \\@ \"dddd, d MMMM yyyy\" ");
builder.insertField(" TIME ");
builder.insertField(" REVNUM ");
builder.insertField(" AUTHOR \"John Doe\" ");
builder.insertField(" SUBJECT \"My Subject\" ");
builder.insertField(" QUOTE \"Hello world!\" ");
FieldUpdatingCallback callback = new FieldUpdatingCallback();
doc.getFieldOptions().setFieldUpdatingCallback(callback);
doc.updateFields();
Assert.assertTrue(callback.getFieldUpdatedCalls().contains("Updating John Doe"));
}
///
/// Implement this interface if you want to have your own custom methods called during a field update.
///
public static class FieldUpdatingCallback implements IFieldUpdatingCallback
{
public FieldUpdatingCallback()
{
mFieldUpdatedCalls = new ArrayList();
}
///
/// A user defined method that is called just before a field is updated.
///
public void fieldUpdating(Field field) {
if (field.getType() == FieldType.FIELD_AUTHOR)
{
FieldAuthor fieldAuthor = (FieldAuthor) field;
try {
fieldAuthor.setAuthorName("Updating John Doe");
} catch (Exception e) {
e.printStackTrace();
}
}
}
///
/// A user defined method that is called just after a field is updated.
///
public void fieldUpdated(Field field)
{
getFieldUpdatedCalls().add(field.getResult());
}
public ArrayList getFieldUpdatedCalls() { return mFieldUpdatedCalls; };
private ArrayList mFieldUpdatedCalls;
}
Returns: int - The number of updated fields.