IPropertyManager.java :  » IDE-Eclipse » core » org » eclipse » core » internal » properties » Java Open Source

Java Open Source » IDE Eclipse » core 
core » org » eclipse » core » internal » properties » IPropertyManager.java
/*******************************************************************************
 * Copyright (c) 2004, 2006 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.core.internal.properties;

import java.util.Map;
import org.eclipse.core.internal.resources.IManager;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.QualifiedName;

public interface IPropertyManager extends IManager {
  /**
   * Closes the property store for a resource
   * 
   * @param target The resource to close the property store for
   * @exception CoreException
   */
  public void closePropertyStore(IResource target) throws CoreException;

  /**
   * Copy all the properties of one resource to another. Both resources
   * must have a property store available.
   */
  public void copy(IResource source, IResource destination, int depth) throws CoreException;

  /**
   * Deletes all properties for the given resource and its children.
   * <p>
   * The subtree under the given resource is traversed to the supplied depth.
   * </p>
   * @param target
   * @param depth
   * @exception CoreException
   */
  public void deleteProperties(IResource target, int depth) throws CoreException;

  /**
   * The resource is being deleted so permanently erase its properties.
   */
  public void deleteResource(IResource target) throws CoreException;

  /**
   * Returns the value of the identified property on the given resource as
   * maintained by this store.
   * <p>
   * The qualifier part of the property name must be the unique identifier
   * of the declaring plug-in (e.g. <code>"com.example.plugin"</code>).
   * </p>
   */
  public String getProperty(IResource target, QualifiedName name) throws CoreException;

  /**
   * Sets the value of the identified property on the given resource.
   * <p>
   * The qualifier part of the property name must be the unique identifier
   * of the declaring plug-in (e.g. <code>"com.example.plugin"</code>).
   * </p>
   */
  public void setProperty(IResource target, QualifiedName name, String value) throws CoreException;

  /**
   * Returns a map (<propertyKey: QualifiedName -> value: String>) containing 
   * all properties defined for the given resource. In case no properties can 
   * be found, returns an empty map. 
   */
  public Map getProperties(IResource resource) throws CoreException;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.