| org.apache.jetspeed.page.document.proxy.NodeProxy org.apache.jetspeed.om.page.proxy.LinkProxy
LinkProxy | public class LinkProxy extends NodeProxy implements InvocationHandler(Code) | | This class proxies PSML Link instances to create a logical view
of site content using the Dynamic Proxy pattern.
author: Randy Watler version: $Id: LinkProxy.java 517121 2007-03-12 07:45:49Z ate $ |
getLink | public Link getLink()(Code) | | getLink - get proxy delegate link instance
delegate link |
invoke | public Object invoke(Object proxy, Method m, Object[] args) throws Throwable(Code) | | invoke - method invocation dispatch for this proxy, (defaults to
invocation of delegate unless method is implemented in this
proxy handler or should be hidden/stubbed)
Parameters: proxy - instance invoked against Parameters: method - Link interface method invoked Parameters: args - method arguments throws: Throwable - |
newInstance | public static Link newInstance(SiteView view, String locatorName, Folder parentFolder, Link link)(Code) | | newInstance - creates a new proxy instance that implements the Link interface
Parameters: view - site view owner of this proxy Parameters: locatorName - name of profile locator associatedwith the proxy delegate Parameters: parentFolder - view parent proxy folder Parameters: link - proxy delegate |
|
|