TransformChangeEvent.java
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2008, AIST, the University of Tokyo and General Robotix Inc.
00003  * All rights reserved. This program is made available under the terms of the
00004  * Eclipse Public License v1.0 which accompanies this distribution, and is
00005  * available at http://www.eclipse.org/legal/epl-v10.html
00006  * Contributors:
00007  * General Robotix Inc.
00008  * National Institute of Advanced Industrial Science and Technology (AIST) 
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     // 内部に保持する TransformGroup
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 }


openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Sun Apr 2 2017 03:43:57