Statistics
| Revision:

svn-document-layout / branches / usability_v2 / org.gvsig.app.document.layout.app / org.gvsig.app.document.layout.app.mainplugin / src / main / java / org / gvsig / app / project / documents / layout / FrameChangedNotification.java @ 146

History | View | Annotate | Download (624 Bytes)

1
package org.gvsig.app.project.documents.layout;
2

    
3
import org.gvsig.app.project.documents.layout.fframes.IFFrame;
4

    
5
public class FrameChangedNotification extends DefaultLayoutNotification {
6
    public static final String FRAME_ADDED = "frame_added";
7
    public static final String FRAME_ADDING = "frame_adding";
8
    public static final String FRAME_REMOVING = "frame_removed";
9
    public static final String FRAME_REMOVED = "frame_removed";
10
        private IFFrame frame;
11

    
12
        public FrameChangedNotification(String type, IFFrame frame) {
13
                super(type);
14
                this.frame = frame;
15
        }
16
        
17
        public IFFrame getFrame() {
18
                return this.frame;
19
        }
20

    
21
}