1 11 package org.eclipse.ui.internal.progress; 12 13 import org.eclipse.core.runtime.jobs.Job; 14 15 19 interface IAnimationProcessor { 20 21 25 void addItem(AnimationItem item); 26 27 31 void removeItem(AnimationItem item); 32 33 37 boolean hasItems(); 38 39 43 void animationStarted(); 44 45 49 void animationFinished(); 50 51 56 int getPreferredWidth(); 57 58 63 boolean isProcessorJob(Job job); 64 65 } 66 | Popular Tags |