home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / browser / ie401nt4 / iejava.cab / com / ms / ie / FolderItem.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-11  |  2.3 KB  |  44 lines

  1. package com.ms.ie;
  2.  
  3. import com.ms.com.IUnknown;
  4. import com.ms.com.Variant;
  5. import com.ms.com._Guid;
  6.  
  7. public interface FolderItem extends IUnknown {
  8.    _Guid iid = new _Guid(-87872384, (short)-13340, (short)4558, (byte)-125, (byte)80, (byte)68, (byte)69, (byte)83, (byte)84, (byte)0, (byte)0);
  9.  
  10.    boolean getIsFileSystem();
  11.  
  12.    Object getParent();
  13.  
  14.    boolean getIsLink();
  15.  
  16.    Object getApplication();
  17.  
  18.    FolderItemVerbs Verbs();
  19.  
  20.    Object getGetLink();
  21.  
  22.    String getPath();
  23.  
  24.    boolean getIsFolder();
  25.  
  26.    void InvokeVerb(Variant var1);
  27.  
  28.    String getName();
  29.  
  30.    void setName(String var1);
  31.  
  32.    Object getGetFolder();
  33.  
  34.    int getSize();
  35.  
  36.    String getType();
  37.  
  38.    double getModifyDate();
  39.  
  40.    void setModifyDate(double var1);
  41.  
  42.    boolean getIsBrowsable();
  43. }
  44.