Examples: removeAllFromFolder method (ViewEntryCollection - Java™)
This example removes all documents under "Tricycles" from the "Two-wheeled vehicles" folder.
import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
// (Your code goes here)
Database db = agentContext.getCurrentDatabase();
View view = db.getView("By Category");
view.setAutoUpdate(false);
ViewEntryCollection vec =
view.getAllEntriesByKey("Tricycles", false);
System.out.println("Number of entries found = " +
vec.getCount());
if (vec.getCount() > 0) {
System.out.println("Removing them from \"Two-wheeled
vehicles\"");
vec.removeAllFromFolder("Two-wheeled vehicles"); }
} catch(Exception e) {
e.printStackTrace();
}
}
}