Methods Summary |
---|
public java.lang.Object | clone()
try {
return super.clone();
} catch (CloneNotSupportedException e) {
return null;
}
|
public java.util.Date | getCreationTime()
return creationTime;
|
public int | getGroup()
return group;
|
public double | getHeight()
return height;
|
public java.lang.String | getLanguage()
return language;
|
public int | getLayer()
return layer;
|
public java.util.Date | getModificationTime()
return modificationTime;
|
public long | getTimescale()
return timescale;
|
public long | getTrackId()
return trackId;
|
public float | getVolume()
return volume;
|
public double | getWidth()
return width;
|
public void | setCreationTime(java.util.Date creationTime)
this.creationTime = creationTime;
|
public void | setGroup(int group)
this.group = group;
|
public void | setHeight(double height)
this.height = height;
|
public void | setLanguage(java.lang.String language)
this.language = language;
|
public void | setLayer(int layer)
this.layer = layer;
|
public void | setModificationTime(java.util.Date modificationTime)
this.modificationTime = modificationTime;
|
public void | setTimescale(long timescale)
this.timescale = timescale;
|
public void | setTrackId(long trackId)
this.trackId = trackId;
|
public void | setVolume(float volume)
this.volume = volume;
|
public void | setWidth(double width)
this.width = width;
|