All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface vlc.vrml.generic.geometry.AudioNode

public interface interface AudioNode
JVerge

Version:
0.8 (beta 4) Copyright 1997 The Virtual Light Company under the GNU LGPL

The latest information and bugs in JVerge can be found at http://www.vlc.com.au/JVerge

For definition of the Anchor node please see the VRML 97 Anchor specification

AudioNode interface. This is an interface because of the lack of multiple inheritence means that I cannot make the MovieTexture node both a Texture and an audio node at the same time without destroying the strong type checking that is being inforced by these classes.

Author:
Justin Couch justin@vlc.com.au
See Also:
MovieTexture, AudioClip

Method Index

 o get_loop()
 o get_startTime()
 o get_stopTime()
 o get_url()
 o set_loop(boolean)
 o set_startTime(double)
 o set_stopTime(double)
 o set_url(String[])

Methods

 o set_url
 public abstract void set_url(String url[])
Parameters:
The - array of strings that represent the URLs to be set.
 o get_url
 public abstract String[] get_url()
Returns:
The array of strings that represent the current URLs.
 o set_loop
 public abstract void set_loop(boolean val)
Parameters:
True - to set looping on, False to turn it off.
 o get_loop
 public abstract boolean get_loop()
Returns:
The current looping condition.
 o set_startTime
 public abstract void set_startTime(double val)
Parameters:
The - start time value in seconds.
 o get_startTime
 public abstract double get_startTime()
Returns:
The current start time in seconds.
 o set_stopTime
 public abstract void set_stopTime(double val)
Parameters:
The - stop time in seconds.
 o get_stopTime
 public abstract double get_stopTime()
Returns:
The current stop time in seconds.

All Packages  Class Hierarchy  This Package  Previous  Next  Index