j3dnotification.java
来自「JAVA3D矩陈的相关类」· Java 代码 · 共 45 行
JAVA
45 行
/* * $RCSfile: J3dNotification.java,v $ * * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved. * * Use is subject to license terms. * * $Revision: 1.5 $ * $Date: 2007/02/09 17:18:07 $ * $State: Exp $ */package javax.media.j3d;/** * J3dNotification is used to hold data for asynchronous error notification. */class J3dNotification extends Object { /** * The various notification types. */ static final int INVALID_TYPE = -1; static final int SHADER_ERROR = 0; static final int RENDERING_ERROR = 1; /** * This holds the type of this message */ int type = INVALID_TYPE; /** * The universe that this message originated from */ VirtualUniverse universe; /** * The arguements for a message, 6 for now */ static final int MAX_ARGS = 6; Object[] args = new Object[MAX_ARGS];}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?