All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.helger.photon.app.html.IWebResourceSet Maven / Gradle / Ivy

There is a newer version: 9.2.7
Show newest version
/*
 * Copyright (C) 2014-2023 Philip Helger (www.helger.com)
 * philip[at]helger[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.helger.photon.app.html;

import java.util.Collection;

import javax.annotation.Nonnull;

import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.impl.ICommonsIterable;
import com.helger.commons.collection.impl.ICommonsOrderedSet;
import com.helger.commons.state.EChange;
import com.helger.html.resource.IHTMLResourceProvider;

/**
 * Base interface for CSS and JS resource sets.
 *
 * @author Philip Helger
 * @param 
 *        The contained data type.
 */
public interface IWebResourceSet  extends ICommonsIterable 
{
  /**
   * Add an item
   *
   * @param aItem
   *        The item to add. May not be null.
   * @return {@link EChange}
   */
  @Nonnull
  EChange addItem (@Nonnull T aItem);

  /**
   * Add an item at the specified index
   *
   * @param nIndex
   *        The index to be used. If the value is < 0 the value is ignored
   *        and item is appended.
   * @param aItem
   *        The item to add. May not be null.
   * @return {@link EChange}
   */
  @Nonnull
  EChange addItem (int nIndex, @Nonnull T aItem);

  /**
   * Add all items from another list.
   *
   * @param aItems
   *        The items to be added. May not be null.
   * @return {@link EChange}
   */
  @Nonnull
  EChange addItems (@Nonnull IWebResourceSet  aItems);

  /**
   * Add all items from another list at the specified index.
   *
   * @param nIndex
   *        The index to be used. If the value is < 0 the value is ignored
   *        and item is appended.
   * @param aItems
   *        The items to be added. May not be null.
   * @return {@link EChange}
   */
  @Nonnull
  EChange addItems (int nIndex, @Nonnull IWebResourceSet  aItems);

  /**
   * Unregister an existing item
   *
   * @param aItem
   *        The item to be removed. May not be null.
   * @return {@link EChange}
   */
  @Nonnull
  EChange removeItem (@Nonnull T aItem);

  /**
   * Remove all items.
   *
   * @return {@link EChange}
   */
  @Nonnull
  EChange removeAll ();

  /**
   * @return A non-null set with all items.
   */
  @Nonnull
  @ReturnsMutableCopy
  ICommonsOrderedSet  getAllItems ();

  /**
   * Add all items to the provided target container.
   *
   * @param aTarget
   *        The container to add the items to. May not be null.
   */
  void getAllItems (@Nonnull Collection  aTarget);

  /**
   * Call this method to mark the resource set as "collected for further
   * processing". This state may be used to determine additions afterwards which
   * will potentially not be gathered.
   */
  void markAsCollected ();

  /**
   * @return true if no item is contained
   */
  boolean isEmpty ();

  /**
   * @return true if at least a single item is contained
   */
  boolean isNotEmpty ();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy