|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ScriptStatistics
Interface for the ScriptStatistics object.
Field Summary | |
---|---|
static java.lang.String |
copyright
|
Method Summary | |
---|---|
int |
getDuplicateItemsFoundCount()
Returns the number of duplicate items found. |
int |
getErrorCount()
Returns the number of errors during the script execution. |
int |
getErrorLineCount()
Returns the number of error lines. |
int |
getFailedValidationCount()
Returns the number of failed validations. |
int |
getItemCategoryMappingAddedCount()
Returns the number of item category mapping added. |
int |
getItemsAddedCount()
Returns the number of items added during the script execution. |
int |
getItemsAlreadyCheckedOutCount()
Returns the number of items already checked out. |
int |
getItemsCheckedOutCount()
Returns the number of items checkd out. |
int |
getItemsDeletedCount()
Returns the number of items deleted during the script execution. |
int |
getItemsModifiedCount()
Returns the number of items modified during the script execution. |
int |
getItemsNotFoundCount()
Returns the number of items not found. |
int |
getItemsProcessedCount()
Return the number of items processed during the script execution. |
int |
getLinesProcessedCount()
Return the number of lines processed during the script execution. |
int |
getWarningCount()
Returns the number of warnings during the script execution. |
void |
incrementDuplicateItemsFoundCount(int incrementValue)
increment the number of duplicate items found value by incrementValue. |
void |
incrementErrorCount(int incrementValue)
increment the number of errors value by incrementValue. |
void |
incrementErrorLineCount(int incrementValue)
increment the number of error lines value by incrementValue. |
void |
incrementFailedValidationCount(int incrementValue)
increment the number of failed validation value by incrementValue. |
void |
incrementItemCategoryMappingAddedCount(int incrementValue)
increment the number of item category mapping added value by incrementValue. |
void |
incrementItemsAddedCount(int incrementValue)
increment the number of items added value by incrementValue. |
void |
incrementItemsAlreadyCheckedOutCount(int incrementValue)
Increment the number of items already checked out value by incrementValue. |
void |
incrementItemsCheckedOutCount(int incrementValue)
Increment the number of items checked out value by incrementValue. |
void |
incrementItemsDeletedCount(int incrementValue)
increment the number of items deleted value by incrementValue. |
void |
incrementItemsModifiedCount(int incrementValue)
increment the number of items modified value by incrementValue. |
void |
incrementItemsNotFoundCount(int incrementValue)
Increment the number of items not found value by incrementValue. |
void |
incrementItemsProcessedCount(int incrementValue)
increment the number of items processed value by incrementValue. |
void |
incrementLinesProcessedCount(int incrementValue)
increment the number of lines processed value by incrementValue. |
void |
incrementWarningCount(int incrementValue)
increment the number of warnings value by incrementValue. |
void |
setDuplicateItemsFoundCount(int count)
Sets the number of duplicate items found. |
void |
setErrorCount(int count)
Sets the number of errors during the script execution. |
void |
setErrorLineCount(int count)
Sets the number of error lines. |
void |
setFailedValidationCount(int count)
Sets the number of failed validations. |
void |
setItemCategoryMappingAddedCount(int count)
Sets the number of item category mapping added. |
void |
setItemsAddedCount(int count)
Sets the number of items added during the script execution. |
void |
setItemsAlreadyCheckedOutCount(int count)
Sets the number of items already checked out. |
void |
setItemsCheckedOutCount(int count)
Sets the number of items checkd out. |
void |
setItemsDeletedCount(int count)
Sets the number of items deleted during the script execution. |
void |
setItemsModifiedCount(int count)
Sets the number of items modified during the script execution. |
void |
setItemsNotFoundCount(int count)
Sets the number of items not found. |
void |
setItemsProcessedCount(int count)
Sets the number of items processed during the script execution. |
void |
setLinesProcessedCount(int count)
Sets the number of lines processed during the script execution. |
void |
setWarningCount(int count)
Sets the number of warnings during the script execution. |
Field Detail |
---|
static final java.lang.String copyright
Method Detail |
---|
int getLinesProcessedCount()
PIMInternalException
- If an internal exception occurs.void setLinesProcessedCount(int count)
count
- number of lines processed during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementLinesProcessedCount(int incrementValue)
incrementValue
- the value by which the number of lines processed has to
increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getItemsProcessedCount()
PIMInternalException
- If an internal exception occurs.void setItemsProcessedCount(int count)
count
- number of items processed during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementItemsProcessedCount(int incrementValue)
incrementValue
- the value by which the number of items processed has to
increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getItemsModifiedCount()
PIMInternalException
- If an internal exception occurs.void setItemsModifiedCount(int count)
count
- number of items modified during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementItemsModifiedCount(int incrementValue)
incrementValue
- the value by which the number of items modified has to
increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getItemsAddedCount()
PIMInternalException
- If an internal exception occurs.void setItemsAddedCount(int count)
count
- number of items added during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementItemsAddedCount(int incrementValue)
incrementValue
- the value by which the number of items added has to increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getItemsDeletedCount()
PIMInternalException
- If an internal exception occurs.void setItemsDeletedCount(int count)
count
- number of items deleted during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementItemsDeletedCount(int incrementValue)
incrementValue
- the value by which the number of items deleted has to
increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getErrorCount()
PIMInternalException
- If an internal exception occurs.void setErrorCount(int count)
count
- number of errors during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementErrorCount(int incrementValue)
incrementValue
- the value by which the number of errors has to increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getWarningCount()
PIMInternalException
- If an internal exception occurs.void setWarningCount(int count)
count
- number of warnings during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementWarningCount(int incrementValue)
incrementValue
- the value by which the number of warnings has to increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getErrorLineCount()
PIMInternalException
- If an internal exception occurs.void setErrorLineCount(int count)
count
- number of error lines during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementErrorLineCount(int incrementValue)
incrementValue
- the value by which the number of error lines has to increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getFailedValidationCount()
PIMInternalException
- If an internal exception occurs.void setFailedValidationCount(int count)
count
- number of failed validations during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementFailedValidationCount(int incrementValue)
incrementValue
- the value by which the number of failed validation has to
increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getItemCategoryMappingAddedCount()
PIMInternalException
- If an internal exception occurs.void setItemCategoryMappingAddedCount(int count)
count
- number of item category mapping added during the script
execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementItemCategoryMappingAddedCount(int incrementValue)
incrementValue
- the value by which the number of item category mapping added
has to increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getItemsNotFoundCount()
PIMInternalException
- If an internal exception occurs.void setItemsNotFoundCount(int count)
count
- number of items not found during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementItemsNotFoundCount(int incrementValue)
incrementValue
- the value by which the number of items not found has to
increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getDuplicateItemsFoundCount()
PIMInternalException
- If an internal exception occurs.void setDuplicateItemsFoundCount(int count)
count
- number of duplicate items found during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementDuplicateItemsFoundCount(int incrementValue)
incrementValue
- the value by which the number of duplicate items found has to
increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getItemsCheckedOutCount()
PIMInternalException
- If an internal exception occurs.void setItemsCheckedOutCount(int count)
count
- number of items checkd out during the script execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementItemsCheckedOutCount(int incrementValue)
incrementValue
- the value by which the number of items checked out has to
increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.int getItemsAlreadyCheckedOutCount()
PIMInternalException
- If an internal exception occurs.void setItemsAlreadyCheckedOutCount(int count)
count
- number of items already checked out during the script
execution
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.void incrementItemsAlreadyCheckedOutCount(int incrementValue)
incrementValue
- the value by which the number of items already checked out has
to increment
PIMInternalException
- If an internal exception occurs.
PIMAuthorizationException
- Reserved for future use.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |