FileDocCategorySizeDatePackage
Resource.javaAPI DocAndroid 1.5 API1353Wed May 06 22:41:10 BST 2009com.android.ide.eclipse.editors.resources.manager

Resource

public abstract class Resource extends Object
Base class for file system resource items (Folders, Files).

Fields Summary
private boolean
mTouched
Constructors Summary
Methods Summary
public abstract com.android.ide.eclipse.editors.resources.configurations.FolderConfigurationgetConfiguration()
Returns the {@link FolderConfiguration} for this object.

public final booleanisTouched()

        return mTouched;
    
public final voidresetTouch()

        mTouched = false;
    
public final voidtouch()
Indicates that the underlying file was changed.

    
                
       

                
        
       mTouched = true;