home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / ext / j3dutils.jar / com / sun / j3d / loaders / Loader.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-06-19  |  996 b   |  34 lines

  1. package com.sun.j3d.loaders;
  2.  
  3. import java.io.FileNotFoundException;
  4. import java.io.Reader;
  5. import java.net.URL;
  6.  
  7. public interface Loader {
  8.    int LOAD_LIGHT_NODES = 1;
  9.    int LOAD_FOG_NODES = 2;
  10.    int LOAD_BACKGROUND_NODES = 4;
  11.    int LOAD_BEHAVIOR_NODES = 8;
  12.    int LOAD_VIEW_GROUPS = 16;
  13.    int LOAD_SOUND_NODES = 32;
  14.    int LOAD_ALL = -1;
  15.  
  16.    Scene load(String var1) throws FileNotFoundException, IncorrectFormatException, ParsingErrorException;
  17.  
  18.    Scene load(URL var1) throws FileNotFoundException, IncorrectFormatException, ParsingErrorException;
  19.  
  20.    Scene load(Reader var1) throws FileNotFoundException, IncorrectFormatException, ParsingErrorException;
  21.  
  22.    void setBaseUrl(URL var1);
  23.  
  24.    void setBasePath(String var1);
  25.  
  26.    URL getBaseUrl();
  27.  
  28.    String getBasePath();
  29.  
  30.    void setFlags(int var1);
  31.  
  32.    int getFlags();
  33. }
  34.