Package org.apache.wiki.dav.items

Examples of org.apache.wiki.dav.items.TopLevelDavItem


    public Collection listItems( DavPath path )
    {
        ArrayList<DavItem> list = new ArrayList<DavItem>();
       
        list.add( new TopLevelDavItem(this) );
       
        return list;
    }
View Full Code Here


        return list;
    }

    public DavItem getItem( DavPath path )
    {
        return new TopLevelDavItem(this);
    }
View Full Code Here

        return new TopLevelDavItem(this);
    }

    public DavItem refreshItem( DavItem old, DavPath path )
    {
        return new TopLevelDavItem(this);
    }
View Full Code Here

TOP

Related Classes of org.apache.wiki.dav.items.TopLevelDavItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.