Changeset 30132
- Timestamp:
- 02/13/08 14:27:31 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
org.nuxeo.ecm.core/trunk/nuxeo-core-api/src/main/java/org/nuxeo/ecm/core/api/event/impl/CoreEventImpl.java
r28564 r30132 22 22 import java.security.Principal; 23 23 import java.util.Date; 24 import java.util.List; 24 25 import java.util.Map; 25 26 … … 61 62 this.category = category; 62 63 this.comment = comment; 64 } 65 66 67 68 public boolean isComposite() { 69 return false; 70 } 71 72 public List<CoreEvent> getNestedEvents() { 73 return null; 63 74 } 64 75
