Source Code Cross Referenced for PickingCallback.java in  » 6.0-JDK-Modules » java-3d » com » sun » j3d » utils » pickfast » behaviors » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » java 3d » com.sun.j3d.utils.pickfast.behaviors 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * $RCSfile: PickingCallback.java,v $
03:         *
04:         * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
05:         *
06:         * Redistribution and use in source and binary forms, with or without
07:         * modification, are permitted provided that the following conditions
08:         * are met:
09:         *
10:         * - Redistribution of source code must retain the above copyright
11:         *   notice, this list of conditions and the following disclaimer.
12:         *
13:         * - Redistribution in binary form must reproduce the above copyright
14:         *   notice, this list of conditions and the following disclaimer in
15:         *   the documentation and/or other materials provided with the
16:         *   distribution.
17:         *
18:         * Neither the name of Sun Microsystems, Inc. or the names of
19:         * contributors may be used to endorse or promote products derived
20:         * from this software without specific prior written permission.
21:         *
22:         * This software is provided "AS IS," without a warranty of any
23:         * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
24:         * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
25:         * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
26:         * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL
27:         * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF
28:         * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
29:         * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR
30:         * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,
31:         * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND
32:         * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR
33:         * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
34:         * POSSIBILITY OF SUCH DAMAGES.
35:         *
36:         * You acknowledge that this software is not designed, licensed or
37:         * intended for use in the design, construction, operation or
38:         * maintenance of any nuclear facility.
39:         *
40:         * $Revision: 1.4 $
41:         * $Date: 2007/02/09 17:20:25 $
42:         * $State: Exp $
43:         */
44:
45:        package com.sun.j3d.utils.pickfast.behaviors;
46:
47:        import javax.media.j3d.TransformGroup;
48:
49:        /**
50:         * The PickingCallback interface allows a class to be notified when a
51:         * picked object is moved. The class that is interested in object
52:         * movement implements this interface, and the object created with
53:         * that class is registered with the desired subclass of
54:         * PickMouseBehavior using the <code>setupCallback</code> method.
55:         * When the picked object moves, the registered object's
56:         * <code>transformChanged</code> method is invoked.
57:         */
58:
59:        public interface PickingCallback {
60:
61:            public final static int ROTATE = 0;
62:            public final static int TRANSLATE = 1;
63:            public final static int ZOOM = 2;
64:
65:            /**
66:             * The user made a selection but nothing was
67:             * actually picked
68:             */
69:            public final static int NO_PICK = 3;
70:
71:            /**
72:             * Called by the Pick Behavior with which this callback
73:             * is registered each time the Picked object is moved
74:             */
75:            public void transformChanged(int type, TransformGroup tg);
76:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.