All Packages Class Hierarchy This Package Previous Next Index
Interface vlc.vrml.internal.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
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
-
get_duration_changed()
-
-
get_isActive()
-
-
get_loop()
-
-
get_startTime()
-
-
get_stopTime()
-
-
get_url()
-
-
set_loop(boolean)
-
-
set_startTime(double)
-
-
set_stopTime(double)
-
-
set_url(String[])
-
set_url
public abstract void set_url(String url[])
- Parameters:
- The - array of strings that represent the URLs to be set.
get_url
public abstract String[] get_url()
- Returns:
- The array of strings that represent the current URLs.
set_loop
public abstract void set_loop(boolean val)
- Parameters:
- True - to set looping on, False to turn it off.
get_loop
public abstract boolean get_loop()
- Returns:
- The current looping condition.
set_startTime
public abstract void set_startTime(double val)
- Parameters:
- The - start time value in seconds.
get_startTime
public abstract double get_startTime()
- Returns:
- The current start time in seconds.
set_stopTime
public abstract void set_stopTime(double val)
- Parameters:
- The - stop time in seconds.
get_stopTime
public abstract double get_stopTime()
- Returns:
- The current stop time in seconds.
get_duration_changed
public abstract float get_duration_changed()
- Returns:
- The value of the duration_changed eventOut.
get_isActive
public abstract boolean get_isActive()
- Returns:
- The current state of the node. True if the node is active.
All Packages Class Hierarchy This Package Previous Next Index