Back to project page dandy.
The source code is released under:
GNU General Public License
If you think the Android project dandy listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.workhabit.drupal.publisher; /* w w w. ja v a 2 s . co m*/ import org.workhabit.drupal.api.entity.drupal7.DrupalNode; import org.workhabit.drupal.api.site.exceptions.DrupalFetchException; import java.util.List; /** * Copyright 2009 - WorkHabit, Inc. - acs * Date: Sep 25, 2010, 5:01:14 PM */ public class DrupalNodeListViewActivity extends AbstractDrupalNodeListActivity { protected List<DrupalNode> doGetNodes(String viewArguments, String viewName) throws DrupalFetchException { return drupalSiteContext.getNodeView(viewName, viewArguments); } }