home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / browser / ie401nt4 / iejava.cab / com / ms / ie / FolderItemVerbs.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-11  |  1.1 KB  |  20 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 FolderItemVerbs extends IUnknown {
  8.    _Guid iid = new _Guid(528700096, (short)20656, (short)4559, (byte)-106, (byte)12, (byte)0, (byte)-128, (byte)-57, (byte)-12, (byte)-18, (byte)-123);
  9.  
  10.    IUnknown _NewEnum();
  11.  
  12.    Object getParent();
  13.  
  14.    Object getApplication();
  15.  
  16.    int getCount();
  17.  
  18.    FolderItemVerb Item(Variant var1);
  19. }
  20.