home *** CD-ROM | disk | FTP | other *** search
- package com.sun.j3d.loaders;
-
- import java.io.FileNotFoundException;
- import java.io.Reader;
- import java.net.URL;
-
- public interface Loader {
- int LOAD_LIGHT_NODES = 1;
- int LOAD_FOG_NODES = 2;
- int LOAD_BACKGROUND_NODES = 4;
- int LOAD_BEHAVIOR_NODES = 8;
- int LOAD_VIEW_GROUPS = 16;
- int LOAD_SOUND_NODES = 32;
- int LOAD_ALL = -1;
-
- Scene load(String var1) throws FileNotFoundException, IncorrectFormatException, ParsingErrorException;
-
- Scene load(URL var1) throws FileNotFoundException, IncorrectFormatException, ParsingErrorException;
-
- Scene load(Reader var1) throws FileNotFoundException, IncorrectFormatException, ParsingErrorException;
-
- void setBaseUrl(URL var1);
-
- void setBasePath(String var1);
-
- URL getBaseUrl();
-
- String getBasePath();
-
- void setFlags(int var1);
-
- int getFlags();
- }
-