com.phloc.scopes.singleton.tree.GlobalSingletonTreeWithUniqueID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phloc-scopes Show documentation
Show all versions of phloc-scopes Show documentation
Library for handling scopes in a generic way
/**
* Copyright (C) 2006-2015 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* 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 com.phloc.scopes.singleton.tree;
import java.util.Collection;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.phloc.commons.state.EChange;
import com.phloc.commons.tree.withid.DefaultTreeItemWithID;
import com.phloc.commons.tree.withid.unique.DefaultTreeWithGlobalUniqueID;
import com.phloc.commons.tree.withid.unique.ITreeWithGlobalUniqueID;
import com.phloc.scopes.singleton.GlobalSingleton;
/**
* Represents a global singleton tree with a unique ID. It basically is a
* {@link GlobalSingleton} wrapping a {@link DefaultTreeWithGlobalUniqueID} with
* the same API.
*
* @author Philip Helger
*/
public abstract class GlobalSingletonTreeWithUniqueID extends GlobalSingleton implements ITreeWithGlobalUniqueID >
{
protected final DefaultTreeWithGlobalUniqueID m_aTree = new DefaultTreeWithGlobalUniqueID ();
public GlobalSingletonTreeWithUniqueID ()
{}
@Nonnull
public DefaultTreeItemWithID getRootItem ()
{
return m_aTree.getRootItem ();
}
@Nullable
public DefaultTreeItemWithID getChildWithID (@Nullable final DefaultTreeItemWithID aCurrent,
@Nullable final KEYTYPE aID)
{
return m_aTree.getChildWithID (aCurrent, aID);
}
public boolean hasChildren (@Nullable final DefaultTreeItemWithID aCurrent)
{
return m_aTree.hasChildren (aCurrent);
}
@Nonnegative
public int getChildCount (@Nullable final DefaultTreeItemWithID aCurrent)
{
return m_aTree.getChildCount (aCurrent);
}
@Nullable
public Collection extends DefaultTreeItemWithID > getChildren (@Nullable final DefaultTreeItemWithID aCurrent)
{
return m_aTree.getChildren (aCurrent);
}
@Nullable
public DefaultTreeItemWithID getItemWithID (@Nullable final KEYTYPE aDataID)
{
return m_aTree.getItemWithID (aDataID);
}
@Nonnull
public Collection > getAllItems ()
{
return m_aTree.getAllItems ();
}
public boolean isItemSameOrDescendant (@Nullable final KEYTYPE aParentItemID, @Nullable final KEYTYPE aChildItemID)
{
return m_aTree.isItemSameOrDescendant (aParentItemID, aChildItemID);
}
public boolean containsItemWithID (@Nullable final KEYTYPE aDataID)
{
return m_aTree.containsItemWithID (aDataID);
}
@Nullable
public VALUETYPE getItemDataWithID (@Nullable final KEYTYPE aDataID)
{
return m_aTree.getItemDataWithID (aDataID);
}
@Nonnull
public Collection getAllItemDatas ()
{
return m_aTree.getAllItemDatas ();
}
@Nonnull
public EChange removeItemWithID (@Nullable final KEYTYPE aDataID)
{
return m_aTree.removeItemWithID (aDataID);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy