Git Repositories View: Refactoring first part
[egit.git] / org.eclipse.egit.ui / src / org / eclipse / egit / ui / internal / repository / tree / SymbolicRefsNode.java
blobc476aa80617ebf93c30b59e0df79dd648b009261
1 /*******************************************************************************
2 * Copyright (c) 2010 SAP AG.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
8 * Contributors:
9 * Mathias Kinzler (SAP AG) - initial implementation
10 *******************************************************************************/
11 package org.eclipse.egit.ui.internal.repository.tree;
13 import org.eclipse.jgit.lib.Repository;
15 /**
16 * Represents the "Symbolic References" node
18 public class SymbolicRefsNode extends RepositoryTreeNode<Repository> {
20 /**
21 * Constructs the node.
23 * @param parent
24 * the parent node (may be null)
25 * @param repository
26 * the {@link Repository}
28 public SymbolicRefsNode(RepositoryTreeNode parent, Repository repository) {
29 super(parent, RepositoryTreeNodeType.SYMBOLICREFS, repository,
30 repository);