Java Code Examples for com.jacob.com.Dispatch#put()

The following examples show how to use com.jacob.com.Dispatch#put() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: IITTrack.java    From The-5zig-Mod with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Set the name of the album containing the object.;
 *
 * @param album The new name of the album containing the object.
 */
public void setAlbum(String album) {
	Dispatch.put(object, "Album", album);
}
 
Example 2
Source File: IITTrack.java    From The-5zig-Mod with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Set the name of the artist/source of the object.
 *
 * @param artist The new artist/source of the object.
 */
public void setArtist(String artist) {
	Dispatch.put(object, "Artist", artist);
}
 
Example 3
Source File: IITTrack.java    From The-5zig-Mod with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Set the start time of the object (in seconds).
 *
 * @param start The new start time of the object (in seconds).
 */
public void setStart(int start) {
	Dispatch.put(object, "Start", start);
}
 
Example 4
Source File: IITTrack.java    From The-5zig-Mod with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Set the stop time of the object (in seconds).
 *
 * @param finish The new stop time of the object (in seconds).
 */
public void setFinish(int finish) {
	Dispatch.put(object, "Finish", finish);
}
 
Example 5
Source File: IITTrack.java    From The-5zig-Mod with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Set the number of times the object has been played. This property cannot
 * be set if the object is not playable (e.g. a PDF file).
 *
 * @param playedCount The new number of times the object has been played.
 */
public void setPlayedCount(int playedCount) {
	Dispatch.put(object, "PlayedCount", playedCount);
}
 
Example 6
Source File: IITObject.java    From The-5zig-Mod with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Set the name of the object.
 *
 * @param name The new name of the object.
 */
public void setName(String name) {
	Dispatch.put(object, "Name", name);
}
 
Example 7
Source File: IITTrack.java    From The-5zig-Mod with MIT License 2 votes vote down vote up
/**
 * Set the name of the album containing the object.;
 *
 * @param album The new name of the album containing the object.
 */
public void setAlbum(String album) {
	Dispatch.put(object, "Album", album);
}
 
Example 8
Source File: IITTrack.java    From The-5zig-Mod with MIT License 2 votes vote down vote up
/**
 * Set the name of the artist/source of the object.
 *
 * @param artist The new artist/source of the object.
 */
public void setArtist(String artist) {
	Dispatch.put(object, "Artist", artist);
}
 
Example 9
Source File: IITTrack.java    From The-5zig-Mod with MIT License 2 votes vote down vote up
/**
 * Set the start time of the object (in seconds).
 *
 * @param start The new start time of the object (in seconds).
 */
public void setStart(int start) {
	Dispatch.put(object, "Start", start);
}
 
Example 10
Source File: IITTrack.java    From The-5zig-Mod with MIT License 2 votes vote down vote up
/**
 * Set the stop time of the object (in seconds).
 *
 * @param finish The new stop time of the object (in seconds).
 */
public void setFinish(int finish) {
	Dispatch.put(object, "Finish", finish);
}
 
Example 11
Source File: IITTrack.java    From The-5zig-Mod with MIT License 2 votes vote down vote up
/**
 * Set the number of times the object has been played. This property cannot
 * be set if the object is not playable (e.g. a PDF file).
 *
 * @param playedCount The new number of times the object has been played.
 */
public void setPlayedCount(int playedCount) {
	Dispatch.put(object, "PlayedCount", playedCount);
}
 
Example 12
Source File: IITObject.java    From The-5zig-Mod with MIT License 2 votes vote down vote up
/**
 * Set the name of the object.
 *
 * @param name The new name of the object.
 */
public void setName(String name) {
	Dispatch.put(object, "Name", name);
}