InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ISetMetaDataCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner:
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __ISetMetaDataCmdData__
25 #define __ISetMetaDataCmdData__
26 
27 #include "IPMUnknown.h"
28 
29 //Utils && IDs
30 #include "LibraryProviderID.h"
31 #include "ILibraryAssetMetaData.h"
32 #include "GlobalTime.h"
33 
34 //========================================================================================
35 // INTERFACE ISetMetaDataCmdData
36 //========================================================================================
37 
43 {
44  public:
45  enum { kDefaultIID = IID_ISETMETADATACMDDATA };
46 
50  virtual IPMUnknown* GetLibraryAsset() const = 0;
51 
55  virtual void SetLibraryAsset(IPMUnknown* asset) = 0;
56 
60  virtual void SetName(const PMString &name) = 0;
61 
65  virtual PMString GetName() const = 0;
66 
70  virtual void SetUserType(const ILibraryAssetMetaData::UserType userType) = 0 ;
71 
76  virtual ILibraryAssetMetaData::UserType GetUserType() const = 0 ;
77 
81  virtual void SetDescription(const PMString &description) = 0 ;
82 
86  virtual PMString GetDescription() const = 0 ;
87 
93  virtual void SetCreationTime(GlobalTime t) = 0 ;
94 
98  virtual GlobalTime GetCreationTime() const = 0;
99 
100 };
101 #endif