OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ChainedData
(Results
1 - 3
of
3
) sorted by null
/external/jsilver/src/com/google/clearsilver/jsilver/data/
ChainedData.java
34
public class
ChainedData
extends DelegatedData {
35
public static final Logger logger = Logger.getLogger(
ChainedData
.class.getName());
49
public
ChainedData
(Data data) {
54
public
ChainedData
(Data... dataList) {
59
public
ChainedData
(List<Data> dataList) {
66
return newDelegate == null ? null : new
ChainedData
(newDelegate);
71
throw new IllegalArgumentException("Must pass in at least one Data object to
ChainedData
.");
75
throw new IllegalArgumentException("
ChainedData
does not accept null Data objects.");
82
throw new IllegalArgumentException("Must pass in at least one Data object to
ChainedData
.");
86
throw new IllegalArgumentException("
ChainedData
does not accept null Data objects.")
[
all
...]
LocalAndGlobalData.java
20
* This is a special implementation of
ChainedData
to be used for holding the local and global Data
24
public class LocalAndGlobalData extends
ChainedData
{
NestedMapData.java
399
if (symLink instanceof
ChainedData
) {
401
"\nOther type is
ChainedData
indicating there are "
Completed in 46 milliseconds