- Timestamp:
- 06/05/08 15:58:33 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Jav_BDP/com/scenari/m/bdp/itemcontent/base/XResource.java
r10706 r11149 61 61 protected InputStream fInputStream = null; 62 62 63 protected String fContentType = null; 64 63 65 protected Date fLastUpdt = null; 64 66 … … 107 109 public final Date hGetLastModif() throws Exception { 108 110 return fLastUpdt; 111 } 112 113 public String hGetContentType() throws Exception { 114 return fContentType; 109 115 } 110 116 … … 164 170 fRights = pRights; 165 171 } 172 173 public void hSetContentType(String pContentType) { 174 fContentType = pContentType; 175 } 176 166 177 }
Note: See TracChangeset
for help on using the changeset viewer.