ariba.util.core
Interface Linkable


public interface Linkable

By implementing this interface the object in question can be stored in a LinkableList. Here's a good example: import ariba.util.core.Linkable; import ariba.util.core.LinkableList; import ariba.util.core.LinkPayload; class Shme implements Linkable { private LinkPayload linkPayload = new LinkPayload(this); private boolean currentlyInUse = false; public LinkPayload getLink () { return this.linkPayload; } public boolean inuse () { return this.currentlyInUse; } public void setInuse (boolean b) { this.currentlyInUse = b; } . . . }


Method Summary
 LinkPayload getLink()
           
 boolean inuse()
           
 void setInuse(boolean b)
           
 

Method Detail

getLink

LinkPayload getLink()

inuse

boolean inuse()

setInuse

void setInuse(boolean b)


AribaWeb User Interface Development Framework
Copyright © 2000-2014 Ariba, Inc. All Rights Reserved.