Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00017 package com.generalrobotix.ui.view.tdview;
00018
00019 import java.util.EventObject;
00020 import javax.media.j3d.*;
00021
00022 @SuppressWarnings("serial")
00023 public class TransformChangeEvent extends EventObject
00024 {
00025
00028
00029 private TransformGroup tgChanged = null;
00030
00036 public TransformChangeEvent(Object objSource,TransformGroup tgChanged)
00037 {
00038 super(objSource);
00039 this.tgChanged = tgChanged;
00040 }
00041
00046 public TransformGroup getTransformGroup()
00047 {
00048 return tgChanged;
00049 }
00050 }