/* * Copyright (C) 2007-2012 Mathieu Baudier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.argeo.slc.client.ui.model; import javax.jcr.Node; import javax.jcr.NodeIterator; import javax.jcr.RepositoryException; import org.argeo.slc.SlcException; import org.argeo.slc.jcr.SlcNames; import org.argeo.slc.jcr.SlcTypes; /** * UI Tree component that wrap a node of type ResultFolder. list either other * folders and/or a list of results. keeps a reference to its parent. */ public class ResultFolder extends ResultParent implements Comparable { private Node node = null; /** * * @param parent * @param node * throws an exception if null * @param name */ public ResultFolder(ResultParent parent, Node node, String name) { super(name); try { if (node == null) throw new SlcException("Node Object cannot be null"); setParent(parent); this.node = node; // initialize passed status if possible if (node.hasNode(SlcNames.SLC_STATUS)) setPassed(node.getNode(SlcNames.SLC_STATUS) .getProperty(SlcNames.SLC_SUCCESS).getBoolean()); } catch (RepositoryException re) { throw new SlcException( "Unexpected error while initializing result folder : " + getName(), re); } } @Override protected void initialize() { try { NodeIterator ni = node.getNodes(); while (ni.hasNext()) { Node currNode = ni.nextNode(); if (currNode.isNodeType(SlcTypes.SLC_TEST_RESULT)) { SingleResultNode srn = new SingleResultNode(this, currNode, currNode.getProperty(SlcNames.SLC_TEST_CASE) .getString()); addChild(srn); } else if (currNode.isNodeType(SlcTypes.SLC_RESULT_FOLDER)) { // FIXME change label ResultFolder rf = new ResultFolder(this, currNode, currNode.getName()); addChild(rf); } } } catch (RepositoryException re) { throw new SlcException( "Unexpected error while initializing result folder : " + getName(), re); } } @Override public synchronized void dispose() { super.dispose(); } public Node getNode() { return node; } /** * Overriden to return an ordered list of children */ public synchronized Object[] getChildren() { Object[] children = super.getChildren(); return ResultParentUtils.orderChildren(children); } public int compareTo(ResultFolder o) { return super.compareTo(o); } }