HomeSort by relevance Sort by last modified time
    Searched refs:symLink (Results 1 - 5 of 5) sorted by null

  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 66 private NestedMapData symLink = this;
195 * Set the value of this node. Any symlink that may have been set for this node will be replaced.
198 // Clearsilver behaviour is to replace any symlink that may already exist
199 // here with the new value, rather than following the symlink.
200 this.symLink = this;
370 for (current = this; current.symLink != current; current = current.symLink);
393 public void setSymlink(Data symLink) {
394 if (symLink instanceof NestedMapData) {
395 this.symLink = (NestedMapData) symLink
    [all...]
DelegatedData.java 222 public void setSymlink(Data symLink) {
223 symLink = unwrap(symLink);
224 getDelegate().setSymlink(symLink);
Data.java 66 * Set the value of this node. Any symlink that may have been set for this node will be replaced.
182 void setSymlink(Data symLink);
185 * Retrieve the symbolic link this node points to. Will return reference to self if not a symlink.
UnmodifiableData.java 97 public void setSymlink(Data symLink) {
DefaultDataContext.java 348 public void setSymlink(Data symLink) {

Completed in 32 milliseconds