1 11 package org.eclipse.team.core.variants; 12 13 import org.eclipse.core.resources.IStorage; 14 import org.eclipse.core.runtime.IProgressMonitor; 15 import org.eclipse.team.core.TeamException; 16 17 25 public interface IResourceVariant { 26 27 33 public String getName(); 34 35 41 public boolean isContainer(); 42 43 60 public IStorage getStorage(IProgressMonitor monitor) throws TeamException; 61 62 68 public String getContentIdentifier(); 69 70 76 public byte[] asBytes(); 77 78 83 public boolean equals(Object object); 84 85 } 86 | Popular Tags |