01: /*
02: * $Header: /cvs/j3dfly/J3dEditor/src/org/jdesktop/j3dedit/scenegrapheditor/nodeeditors/panels/TextureExtraData.java,v 1.1 2005/04/20 22:21:11 paulby Exp $
03: *
04: * Sun Public License Notice
05: *
06: * The contents of this file are subject to the Sun Public License Version
07: * 1.0 (the "License"). You may not use this file except in compliance with
08: * the License. A copy of the License is available at http://www.sun.com/
09: *
10: * The Original Code is the Java 3D(tm) Scene Graph Editor.
11: * The Initial Developer of the Original Code is Paul Byrne.
12: * Portions created by Paul Byrne are Copyright (C) 2002.
13: * All Rights Reserved.
14: *
15: * Contributor(s): Paul Byrne.
16: *
17: **/
18: package org.jdesktop.j3dedit.scenegrapheditor.nodeeditors.panels;
19:
20: import org.jdesktop.j3dedit.scenegrapheditor.nodeeditors.SGObjectExtraData;
21:
22: /**
23: * Storage for extra node editing data for Textures that is not stored
24: * in the scene graph
25: */
26: public class TextureExtraData extends SGObjectExtraData {
27:
28: /**
29: * @author Paul Byrne
30: * @version $Id: TextureExtraData.java,v 1.1 2005/04/20 22:21:11 paulby Exp $
31: */
32: private java.net.URL imageURL = null;
33:
34: public void setImageURL(java.net.URL imageURL) {
35: this .imageURL = imageURL;
36: }
37:
38: public java.net.URL getImageURL() {
39: return imageURL;
40: }
41: }
|