Project

General

Profile

« Previous | Next » 

Revision 9d5ae601

Added by Andreas Kohlbecker almost 7 years ago

ref #6612 updating UI components on modified References

View differences:

src/main/java/eu/etaxonomy/cdm/vaadin/event/EntityChangeEvent.java
21 21
        REMOVED;
22 22
    }
23 23

  
24
    private Class<?> entityType;
25

  
24 26
    /**
25 27
     * @param type
26 28
     * @param entityId
27 29
     */
28
    public EntityChangeEvent(Type type, Integer entityId) {
30
    public EntityChangeEvent(Class<?> entityType, Integer entityId, Type type) {
29 31
        super(type, entityId);
32
        this.entityType = entityType;
30 33
    }
31 34

  
35
    /**
36
     * @return the entityType
37
     */
38
    public Class<?> getEntityType() {
39
        return entityType;
40
    }
32 41

  
33 42
}

Also available in: Unified diff