1 17 package org.alfresco.service.cmr.action; 18 19 import java.util.List ; 20 21 26 public interface CompositeAction extends Action 27 { 28 33 boolean hasActions(); 34 35 40 void addAction(Action action); 41 42 48 void addAction(int index, Action action); 49 50 56 void setAction(int index, Action action); 57 58 64 int indexOfAction(Action action); 65 66 71 List <Action> getActions(); 72 73 79 Action getAction(int index); 80 81 86 void removeAction(Action action); 87 88 91 void removeAllActions(); 92 } 93 | Popular Tags |