Bukkit
1.4.7-R1.0
Main Page
Related Pages
Classes
Files
File List
All
Classes
Namespaces
Files
Functions
Variables
Enumerator
Pages
FixedMetadataValue.java
Go to the documentation of this file.
1
package
org.bukkit.metadata;
2
3
import
org.bukkit.plugin.Plugin;
4
5
import
java.util.concurrent.Callable;
6
11
public
class
FixedMetadataValue
extends
LazyMetadataValue
{
18
public
FixedMetadataValue
(
Plugin
owningPlugin,
final
Object
value
) {
19
super(owningPlugin,
CacheStrategy
.
CACHE_ETERNALLY
,
new
Callable<Object>() {
20
public
Object call()
throws
Exception {
21
return
value
;
22
}
23
});
24
}
25
}
org
bukkit
metadata
FixedMetadataValue.java
Generated on Tue May 21 2013 22:16:45 for Bukkit by
1.8.2