/* license-start * * Copyright (C) 2008 - 2013 Crispico, <http://www.crispico.com/>. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details, at <http://www.gnu.org/licenses/>. * * Contributors: * Crispico - Initial API and implementation * * license-end */ package org.flowerplatform.web.explorer; import java.io.File; import java.util.List; import org.flowerplatform.common.CommonPlugin; import org.flowerplatform.communication.stateful_service.StatefulServiceInvocationContext; import org.flowerplatform.communication.tree.GenericTreeContext; import org.flowerplatform.communication.tree.INodeByPathRetriever; import org.flowerplatform.communication.tree.INodeDataProvider; import org.flowerplatform.communication.tree.remote.PathFragment; import org.flowerplatform.communication.tree.remote.TreeNode; import org.flowerplatform.web.WebPlugin; public class OrganizationNodeDataProvider implements INodeDataProvider, INodeByPathRetriever { @Override public boolean populateTreeNode(Object source, TreeNode destination, GenericTreeContext context) { destination.setLabel(((File) source).getName()); destination.setIcon(WebPlugin.getInstance().getResourceUrl("images/organization.png")); return true; } @Override public PathFragment getPathFragmentForNode(Object node, String nodeType, GenericTreeContext context) { return new PathFragment(((File) node).getName(), nodeType); } @Override public Object getNodeByPath(List<PathFragment> fullPath, GenericTreeContext context) { if (fullPath == null || fullPath.size() != 1) { throw new IllegalArgumentException("We were expecting a path with 1 item, but we got: " + fullPath); } return new File(CommonPlugin.getInstance().getWorkspaceRoot(), fullPath.get(0).getName()); } @Override public String getLabelForLog(Object node, String nodeType) { return ((File) node).getName(); } @Override public String getInplaceEditorText(StatefulServiceInvocationContext context, List<PathFragment> fullPath) { throw new UnsupportedOperationException(); } @Override public boolean setInplaceEditorText(StatefulServiceInvocationContext context, List<PathFragment> path, String text) { throw new UnsupportedOperationException(); } }