1 package jogamp.opengl.glu.nurbs;
2 
3 /*
4  ** License Applicability. Except to the extent portions of this file are
5  ** made subject to an alternative license as permitted in the SGI Free
6  ** Software License B, Version 2.0 (the "License"), the contents of this
7  ** file are subject only to the provisions of the License. You may not use
8  ** this file except in compliance with the License. You may obtain a copy
9  ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
10  ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
11  **
12  ** http://oss.sgi.com/projects/FreeB
13  **
14  ** Note that, as provided in the License, the Software is distributed on an
15  ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
16  ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
17  ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
18  ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
19  **
20  ** Original Code. The Original Code is: OpenGL Sample Implementation,
21  ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
22  ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
23  ** Copyright in any portions created by third parties is as indicated
24  ** elsewhere herein. All Rights Reserved.
25  **
26  ** Additional Notice Provisions: The application programming interfaces
27  ** established by SGI in conjunction with the Original Code are The
28  ** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
29  ** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
30  ** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
31  ** Window System(R) (Version 1.3), released October 19, 1998. This software
32  ** was created using the OpenGL(R) version 1.2.1 Sample Implementation
33  ** published by SGI, but has not been independently verified as being
34  ** compliant with the OpenGL(R) version 1.2.1 Specification.
35  */
36 
37 import java.lang.reflect.Method;
38 
39 /**
40  * Display list
41  * @author Tomas Hrasky
42  *
43  */
44 public class DisplayList {
45 
46   /**
47    * Append action to the display list
48    * @param src source object to invoke method on
49    * @param m invoked method
50    * @param arg method argument
51    */
append(final Object src, final Method m, final Object arg)52   public void append(final Object src, final Method m, final Object arg) {
53     // TODO Auto-generated method stub
54     //            System.out.println("TODO displaylist append");
55   }
56 }
57