1 31 32 package org.opencms.util; 33 34 import java.util.List ; 35 36 45 public interface I_CmsIdentifiableObjectContainer { 46 47 int todo = 0; 49 50 58 void addIdentifiableObject(String id, Object object); 59 60 72 void addIdentifiableObject(String id, Object object, float position); 73 74 77 void clear(); 78 79 84 List elementList(); 85 86 95 Object getObject(String id); 96 } | Popular Tags |