01: /*
02: * $Header: /cvs/j3dfly/J3dFly/src/org/jdesktop/j3dfly/event/VPBehaviorChangeEventObsolete.java,v 1.1 2005/04/20 21:04:26 paulby Exp $
03: *
04: * Sun Public License Notice
05: *
06: * The contents of this file are subject to the Sun Public License Version
07: * 1.0 (the "License"). You may not use this file except in compliance with
08: * the License. A copy of the License is available at http://www.sun.com/
09: *
10: * The Original Code is Java 3D(tm) Fly Through.
11: * The Initial Developer of the Original Code is Paul Byrne.
12: * Portions created by Paul Byrne are Copyright (C) 2002.
13: * All Rights Reserved.
14: *
15: * Contributor(s): Paul Byrne.
16: *
17: **/
18: package org.jdesktop.j3dfly.event;
19:
20: import com.sun.j3d.utils.behaviors.vp.ViewPlatformBehavior;
21:
22: /**
23: * An event indicating that view platform behavior has been changed
24: *
25: * @author Paul Byrne
26: * @version
27: */
28: public class VPBehaviorChangeEventObsolete extends FlyEvent {
29:
30: private ViewPlatformBehavior behavior;
31: private String name;
32:
33: /** Creates new FileLoadEvent */
34: public VPBehaviorChangeEventObsolete(String behaviorName,
35: ViewPlatformBehavior newBehavior) {
36: this .behavior = newBehavior;
37: this .name = behaviorName;
38: }
39:
40: public ViewPlatformBehavior getNewBehavior() {
41: return behavior;
42: }
43:
44: public String getName() {
45: return name;
46: }
47: }
|